TelefonAIv1
Webhooks

The receiver's delivery log, newest first: event, status, number of attempts, the code your server answered with, and the error text

The receiver's delivery log, newest first: event, status, number of attempts, the code your server answered with, and the error text. The body is NOT included — it holds names and summaries, and the log must be readable for debugging without becoming a way into patient data. Look up the event's content in the resource it is about.

GET/v1/webhooks/{id}/deliveries

Authentication

Authorizationstringheaderrequired

Your API key as a Bearer token.

Parameters

idstringpathrequired

The id of the resource.

limitintegerquery

Rows per page. 1–100, default 25.

offsetintegerquery

Rows to skip. Default 0.

statusstringquery

pending, delivered or failed.

Request

curl --request GET \
  --url "https://api.telefonai.dk/v1/webhooks/<id>/deliveries" \
  --header "Authorization: Bearer $API_NOEGLE"

Response

application/json

Success.

object

401Missing key
{
  "error": {
    "code": "unauthorized",
    "message": "Missing or invalid API key."
  }
}