POST
/
webhooks
/
{id}
/
events
/
{event_id}
/
retry
TypeScript
import Nuntly from '@nuntly/sdk';

const client = new Nuntly({
  apiKey: 'My API Key',
});

const response = await client.webhooks.events.retry('event_id', { id: 'wh_YNtYn86oYZmP1ZHbnUBvXXFt' });

console.log(response);
{
  "data": {}
}

Authorizations

Authorization
string
header
required

Bearer HTTP authentication. Allowed headers Authorization: Bearer <API_KEY>

Path Parameters

id
string
required

The webhook id

event_id
string
required

The ID of the webhook event to retry

Response

A successful response

data
object