Gets recent deliveries for a webhook.
Path Parameters
- Type: stringidrequired
The webhook ID
Query Parameters
- Type: integer | stringlimit
Pattern: ^-?(?:0|[1-9]\d*)$Format: int32Maximum number of deliveries to return (default 50, max 100)
Responses
- application/json
- application/problem+json
- application/problem+json
- application/problem+json
Request Example for get/api/v1/webhooks/{id}/deliveries
curl 'https://app.propstreet.com/api/v1/webhooks/{id}/deliveries' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"data": [
{
"id": "string",
"eventId": "string",
"eventType": "string",
"status": "string",
"attemptCount": 1,
"lastAttemptUtc": null,
"lastStatusCode": null,
"lastError": null,
"lastDurationMs": null,
"createdUtc": "2026-08-13T21:32:28.696Z",
"deliveredUtc": null
}
]
}