curl --request GET \
--url 'https://api.computer.stateset.app/api/v1/webhooks/{endpoint_id}/deliveries' \
--header "X-API-Key: $STATESET_COMPUTER_USE_API_KEY"
[
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"endpoint_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"event_type": "string",
"status": "pending",
"response_code": 1,
"attempts": 1,
"next_retry_at": "2026-08-31T14:22:05Z",
"created_at": "2026-08-31T14:22:05Z"
}
]
List Webhook Deliveries V1
Audit log of delivery attempts against a webhook endpoint. Useful for debugging ‘why didn’t my webhook fire?’ — surfaces the HTTP status the receiver returned,…
GET
/
api
/
v1
/
webhooks
/
{endpoint_id}
/
deliveries
curl --request GET \
--url 'https://api.computer.stateset.app/api/v1/webhooks/{endpoint_id}/deliveries' \
--header "X-API-Key: $STATESET_COMPUTER_USE_API_KEY"
[
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"endpoint_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"event_type": "string",
"status": "pending",
"response_code": 1,
"attempts": 1,
"next_retry_at": "2026-08-31T14:22:05Z",
"created_at": "2026-08-31T14:22:05Z"
}
]
Audit log of delivery attempts against a webhook endpoint.
Useful for debugging ‘why didn’t my webhook fire?’ — surfaces the
HTTP status the receiver returned, retry counts, and the next retry
time on failed rows. Sorted newest-first.
Path parameters
string (uuid)
required
Query parameters
integer
string,null
Filter to one of: pending, success, failed.
Response
WebhookDeliverySummary[] — each element:
string
required
string
required
string
required
string
required
pending | success | failed
integer,null
HTTP status from the receiver, if a response was received.
integer
required
Total attempts so far (1..3).
string,null
Scheduled retry time, ISO 8601 UTC, when status == ‘failed’.
string
required
Status codes
| Code | Meaning |
|---|---|
200 | Successful Response |
422 | Validation Error |
curl --request GET \
--url 'https://api.computer.stateset.app/api/v1/webhooks/{endpoint_id}/deliveries' \
--header "X-API-Key: $STATESET_COMPUTER_USE_API_KEY"
[
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"endpoint_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"event_type": "string",
"status": "pending",
"response_code": 1,
"attempts": 1,
"next_retry_at": "2026-08-31T14:22:05Z",
"created_at": "2026-08-31T14:22:05Z"
}
]
Last modified on August 31, 2026