Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve all registered webhook endpoints
align.webhooks.list(): Promise<WebhookListResponse>
const response = await align.webhooks.list(); for (const webhook of response.items) { console.log(`ID: ${webhook.webhook_id}`); console.log(`URL: ${webhook.url}`); console.log(`Events: ${webhook.events.join(", ")}`); }