Skip to main content
POST
/
v1
/
platform
/
webhooks
/
deliveries
/
replay-failed
Resend Failed Webhook Notifications
curl --request POST \
  --url https://api-sandbox.finogates.com/v1/platform/webhooks/deliveries/replay-failed \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "delivery_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "event_id": "d4e5f6a7-b8c9-0123-4567-89abcdef0123",
  "endpoint_id": "c3a1e8b2-4f6d-4a9c-b2e1-8f3d5a7c9e01",
  "limit": 100
}
'
{
  "status_code": 123,
  "data": "<unknown>",
  "query_generated_time": 123
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json

Replay selector for failed webhook deliveries (platform API).

Provide at least one filter, or omit all to replay up to limit most-recent failures.

delivery_id
string<uuid> | null

Replay a single delivery by UUID.

Example:

"a1b2c3d4-e5f6-7890-abcd-ef1234567890"

event_id
string<uuid> | null

Replay all failed deliveries for a specific event.

Example:

"d4e5f6a7-b8c9-0123-4567-89abcdef0123"

endpoint_id
string<uuid> | null

Replay all failed deliveries for a specific endpoint.

Example:

"c3a1e8b2-4f6d-4a9c-b2e1-8f3d5a7c9e01"

limit
integer
default:100

Maximum number of deliveries to replay.

Required range: 1 <= x <= 500
Example:

50

Response

Successful Response

Standard response wrapper for single-object responses and errors.

Generic over the payload type. A route that declares CommonResponse[SomeModel] gets the real data schema rendered in OpenAPI/Swagger; a bare CommonResponse leaves data untyped.

status_code
integer
required

HTTP status code for the response.

data
any
required

Payload or error details.

query_generated_time
integer
required

UTC timestamp (milliseconds since epoch) when response was generated.