Method Signature
Example
Related Methods
Create Webhook
Register a new webhook
Documentation Index
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(", ")}`);
}