Skip to main content
POST
/
webhooks
/
{id}
/
retry
Retry a webhook delivery
curl --request POST \
  --url https://api.cherp.dev/v1/webhooks/{id}/retry \
  --header 'Authorization: Bearer <token>'
{
  "delivery": {
    "id": "<string>",
    "eventId": "<string>",
    "url": "<string>",
    "responseStatus": 123,
    "attemptCount": 123,
    "lastAttemptedAt": "2023-11-07T05:31:56Z",
    "deliveredAt": "2023-11-07T05:31:56Z",
    "failedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

API key. Use pk_live_* for production or pk_test_* for test mode.

Path Parameters

id
string
required

The webhook delivery ID

Response

Webhook retry queued

delivery
object