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": {} } ] }
Return the delivery attempts for the given webhook event ID
Bearer HTTP authentication. Allowed headers Authorization: Bearer <API_KEY>
The webhook id
The id of the webhook event
A successful response
Show child attributes
pending
success
failed