List webhook deliveries
GET
/webhook_deliveries
Webhooks
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/webhook_deliveries'
Response Response Example
{
"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": [
{
"code": "75499",
"detail": "The server returned another HTTP 4XX error",
"title": "Webhook host returned HTTP 4XX"
}
],
"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",
"status": "delivered",
"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"
}
}
],
"meta": {
"page_number": 2,
"page_size": 25,
"total_pages": 3,
"total_results": 55
}
}
Request
Query Params
filter[status][eq]
enum<string>Â
optional
status
Allowed values:
deliveredfailed
Example:
delivered
filter[event_type]
stringÂ
optional
event_type
. Accepts multiple values separated by a ,
.Example:
call_initiated,call.initiated
filter[webhook][contains]
stringÂ
optional
webhook
component contains the given textExample:
call.initiated
filter[attempts][contains]
stringÂ
optional
attempts
component contains the given textExample:
https://fallback.example.com/webhooks
filter[started_at][gte]
stringÂ
optional
Example:
2019-03-29T11:10:00Z
filter[started_at][lte]
stringÂ
optional
Example:
2019-03-29T11:10:00Z
filter[finished_at][gte]
stringÂ
optional
Example:
2019-03-29T11:10:00Z
filter[finished_at][lte]
stringÂ
optional
Example:
2019-03-29T11:10:00Z
page[number]
integerÂ
optional
>= 1
Default:
1
page[size]
integerÂ
optional
>= 1<= 250
Default:
20
Responses
Modified at 2025-06-16 19:14:42