OpenPhn docs
Referencewebhooks

Recent delivery attempts for a webhook

Returns the most recent delivery attempts, newest first. Includes retries.

GET
/v1/webhooks/{webhook_id}/deliveries

Path Parameters

webhook_id*Webhook Id

Query Parameters

limit?Limit
Default25

Response Body

application/json

application/json

curl -X GET "https://loading/v1/webhooks/string/deliveries"
{
  "deliveries": [
    {
      "id": "string",
      "call_id": "string",
      "event": "string",
      "attempt": 0,
      "status_code": 0,
      "error": "string",
      "attempted_at": "string"
    }
  ]
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string",
      "input": null,
      "ctx": {}
    }
  ]
}