Retry a webhook delivery
curl --request POST \
--url https://api.quo.com/webhooks/{webhookId}/events/{deliveryId}/retry \
--header 'Authorization: <api-key>' \
--header 'Quo-Api-Version: <quo-api-version>'{}{
"message": "/webhookId: Expected string to match '^[0-9]+$'",
"docs": "https://quo.com/docs",
"title": "Bad Request",
"errors": [
{
"path": "/webhookId",
"message": "Expected string to match '^[0-9]+$'",
"value": "abc123",
"schema": {
"type": "String",
"pattern": "^[0-9]+$"
}
}
]
}{
"message": "You are unauthorized to access the webhook",
"docs": "https://quo.com/docs",
"title": "Unauthorized"
}{
"message": "You are forbidden to access the webhook",
"docs": "https://quo.com/docs",
"title": "Forbidden"
}{
"message": "Webhook with ID 123 not found",
"docs": "https://quo.com/docs",
"title": "Not Found"
}{
"message": "An unknown error occurred",
"docs": "https://quo.com/docs",
"title": "Unknown Error"
}Webhook Events
Retry a webhook delivery
Queue a new attempt for a delivery. The retry is processed asynchronously; use the delivery detail endpoint to inspect the new attempt.
POST
/
webhooks
/
{webhookId}
/
events
/
{deliveryId}
/
retry
Retry a webhook delivery
curl --request POST \
--url https://api.quo.com/webhooks/{webhookId}/events/{deliveryId}/retry \
--header 'Authorization: <api-key>' \
--header 'Quo-Api-Version: <quo-api-version>'{}{
"message": "/webhookId: Expected string to match '^[0-9]+$'",
"docs": "https://quo.com/docs",
"title": "Bad Request",
"errors": [
{
"path": "/webhookId",
"message": "Expected string to match '^[0-9]+$'",
"value": "abc123",
"schema": {
"type": "String",
"pattern": "^[0-9]+$"
}
}
]
}{
"message": "You are unauthorized to access the webhook",
"docs": "https://quo.com/docs",
"title": "Unauthorized"
}{
"message": "You are forbidden to access the webhook",
"docs": "https://quo.com/docs",
"title": "Forbidden"
}{
"message": "Webhook with ID 123 not found",
"docs": "https://quo.com/docs",
"title": "Not Found"
}{
"message": "An unknown error occurred",
"docs": "https://quo.com/docs",
"title": "Unknown Error"
}Authorizations
Headers
API version header. Supported values: 2026-03-30
Available options:
2026-03-30 Path Parameters
The unique identifier of a webhook
Pattern:
^[0-9]+$Example:
"123"
The delivery identifier, returned as id by the delivery list endpoint and sent in the webhook-id header. This is not the payload eventId.
Example:
"msg_2abcDEFghiJKLmnoPQRstu"
Response
Accepted
The response is of type object.
Was this page helpful?