Skip to main content

TypeScript shape

interface GetWebhooksResponse {
  items: Webhook[] | null;
  cursor: string | null;
}
items
[Webhook!]!
Page of webhooks owned by the calling API key, newest first. See Webhook.
cursor
String
Opaque cursor for the next page. null when the result fits in a single page.