Skip to main content

Documentation Index

Fetch the complete documentation index at: https://align.tolbel.com/llms.txt

Use this file to discover all available pages before exploring further.

Method Signature

align.webhooks.list(): Promise<WebhookListResponse>

Example

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(", ")}`);
}

Create Webhook

Register a new webhook