v52

OpenAPI 3.1.0raw.githubusercontent.com2026-07-311,1941,9384.1 MB
Webhooks

Find webhook_delivery details by ID

Provides webhook_delivery debug data, such as timestamps, delivery status and attempts.

get/webhook_deliveries/{id}

Path parameters

idstring uuid required
Example:C9C0797E-901D-4349-A33C-C2C8F31A92C2

Uniquely identifies the webhook_delivery.

Response

Webhook delivery record.

Example response

{
  "data": {
    "attempts": [
      {
        "finished_at": "2020-08-10T14:00:05.595Z",
        "http": {
          "request": {
            "headers": [
              [
                "Accept",
                "*/*"
              ]
            ],
            "url": "https://fallback.example.com/webhooks"
          },
          "response": {
            "body": "All good.",
            "headers": [
              [
                "Content-Type",
                "text/html"
              ]
            ],
            "status": 200
          }
        },
        "started_at": "2020-08-10T14:00:05.364Z",
        "status": "delivered"
      },
      {
        "errors": [
          75499
        ],
        "finished_at": "2020-08-10T14:00:05.360Z",
        "http": {
          "request": {
            "headers": [
              [
                "Accept",
                "*/*"
              ]
            ],
            "url": "https://typo.example.com/webhooks"
          },
          "response": {
            "body": "Oops. Not found.",
            "headers": [
              [
                "Content-Type",
                "text/html"
              ],
              [
                "Pragma",
                "no-cache"
              ]
            ],
            "status": 404
          }
        },
        "started_at": "2020-08-10T14:00:05.004Z",
        "status": "failed"
      }
    ],
    "finished_at": "2020-08-10T14:00:05.595Z",
    "id": "f5586561-8ff0-4291-a0ac-84fe544797bd",
    "record_type": "webhook_delivery",
    "started_at": "2020-08-10T14:00:00.000Z",
    "user_id": "0ccc7b54-4df3-4bca-a65a-3da1ecc777f0",
    "webhook": {
      "event_type": "call_initiated",
      "id": "C9C0797E-901D-4349-A33C-C2C8F31A92C2",
      "occurred_at": "2020-08-10T13:02:01.000Z",
      "payload": {
        "useful": "information"
      },
      "record_type": "event"
    }
  }
}