curl --request GET \
--url https://api.questra.ai/webhooks/{id}/deliveries \
--header 'Authorization: Bearer <token>' \
--header 'X-Org-Id: <x-org-id>'{
"data": [
{
"id": "<string>",
"webhook_id": "<string>",
"event": "<string>",
"status": "succeeded",
"attempt": 123,
"created_at": "2023-11-07T05:31:56Z",
"status_code": 123,
"request_body": "<string>",
"response_body": "<string>",
"duration_ms": 123
}
],
"total": 123
}Returns a paginated list of all delivery attempts for the given webhook, ordered newest first.
curl --request GET \
--url https://api.questra.ai/webhooks/{id}/deliveries \
--header 'Authorization: Bearer <token>' \
--header 'X-Org-Id: <x-org-id>'{
"data": [
{
"id": "<string>",
"webhook_id": "<string>",
"event": "<string>",
"status": "succeeded",
"attempt": 123,
"created_at": "2023-11-07T05:31:56Z",
"status_code": 123,
"request_body": "<string>",
"response_body": "<string>",
"duration_ms": 123
}
],
"total": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.