Skip to main content
GET
/
webhooks
/
{id}
/
events
/
{event_id}
/
deliveries
TypeScript
import Nuntly from '@nuntly/sdk';

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

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

console.log(response);
{
  "data": [
    {
      "id": "<string>",
      "delivered_at": "<string>",
      "code": "<string>",
      "status": "pending",
      "response": {}
    }
  ]
}

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

Response

A successful response

data
object[]