Retry a single webhook delivery
Triggers a new delivery for the same event. The original delivery is preserved for audit; a new delivery row is created and immediately enqueued. If it fails, the standard auto-retry schedule applies.
Authentication
AuthorizationBearer
OAuth 2.0 Client Credentials Flow. To obtain an access token:
1. Request API credentials from HINDSITE support to receive your `client_id` and `client_secret`
2. Make a POST request to obtain an access token:
```
POST https://app.hindsiteind.com/oauth/token
Content-Type: application/x-www-form-urlencoded
grant_type=client_credentials&client_id=YOUR_CLIENT_ID&client_secret=YOUR_CLIENT_SECRET
```
3. The response will contain your access token:
```json
{
"access_token": "your_access_token_here",
"token_type": "Bearer",
"expires_in": 7200,
"created_at": 1234567890
}
```
4. Include the token in subsequent API requests:
```
Authorization: Bearer your_access_token_here
```
Path parameters
id
ID of the delivery to retry.
Response
Newly created delivery
id
webhook_id
event_id
event_action
The event action that triggered this delivery (e.g. form_completed).
state
Lifecycle state. completed = delivered (2xx response). errored = chain exhausted without success. retrying = waiting for the next auto-retry. in_progress = HTTP request currently in flight.
response
Summary of the last HTTP response. Null while pending.
created_at
updated_at
Errors
403
Forbidden Error
404
Not Found Error

