Retrieve recent delivery attempts for a webhook endpoint, including status, response codes, and timestamps, to help debug your integration.
Security
ApiKeyAuth
- https://api.pioneerft.com/apihttps://api.pioneerft.com/api/public/v1/webhook-endpoints/{id}/deliveries
- https://api.staging.pioneerft.com/apihttps://api.staging.pioneerft.com/api/public/v1/webhook-endpoints/{id}/deliveries
curl -i -X GET \
'https://api.pioneerft.com/api/public/v1/webhook-endpoints/{id}/deliveries?limit=50&offset=0&cursor=string&status=pending' \
-H 'Authorization: Bearer <YOUR_API Key_HERE>'Response
- object
- object (2)
{ "data": [ { "id": "string", "event": "string", "eventId": "string", "status": "string", "attempts": 0, "maxAttempts": 0, "responseStatus": 0, "responseTimeMs": 0, "nextRetryAt": "string", "deliveredAt": "string", "failedAt": "string", "createdAt": "string" } ], "meta": { "mode": "offset", "limit": 0, "offset": 0, "hasMore": true } }