FileForms
Webhook deliveries

Resend Webhook Deliveries

POST
/webhook-deliveries/resend

Make one immediate delivery attempt for each of 1-100 events, returning a per-item outcome (unknown ids report as failed items rather than failing the batch). Resends deliver the SAME events — same id and payload, with fresh signature timestamps — so consumers must deduplicate on the event id. Works for any event, including already-delivered ones; automatic retries are not restarted or consumed. To retry every failed delivery of an endpoint instead, use Retry Failed Deliveries.

Authorization

ApiKeyAuth
x-api-key<token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

curl -X POST "https://example.com/webhook-deliveries/resend" \  -H "Content-Type: application/json" \  -d '{    "eventIds": [      "string"    ]  }'
{  "results": [    {      "id": "string",      "delivered": true,      "responseStatus": 0,      "responseError": "string"    }  ]}