TelefonAIv1
Webhooks

Send one delivery again — typically one that was given up while your server was down

Send one delivery again — typically one that was given up while your server was down. It goes back into the queue with its attempts reset and is sent with EXACTLY the same body, including the same id and created, so your own deduplication recognises it. A delivery that is already queued gives 409. endpoint_disabled in the reply tells you if the receiver is switched off: turn it back on with PATCH, or it will not receive new events.

POST/v1/webhooks/{id}/redeliver

Authentication

Authorizationstringheaderrequired

Your API key as a Bearer token.

Parameters

idstringpathrequired

The id of the resource.

Idempotency-Keystringheader

Repeat a request safely: the same key returns the first response instead of creating a second row. Kept for 24 hours.

Request

curl --request POST \
  --url "https://api.telefonai.dk/v1/webhooks/<id>/redeliver" \
  --header "Authorization: Bearer $API_NOEGLE" \
  --header "Content-Type: application/json" \
  --data '{}'

Response

application/json

Success.

object

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