Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.mesa.dev/llms.txt

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

List configured webhook targets using cursor pagination.
const targets = await mesa.webhookTargets.list({ limit: 50 });

for (const target of targets.webhook_targets) {
  console.log(target.id, target.url, target.events);
}

Options

org
string | undefined
Organization override.
cursor
string | undefined
Opaque pagination cursor from a previous response.
limit
number | undefined
Maximum number of targets to return. The server maximum is 100.

Response

next_cursor
string | null
Cursor for the next page, or null when no more results remain.
has_more
boolean
Whether another page is available.
webhook_targets
array
Webhook target objects with id, name, url, events, repo_ids, created_at, and updated_at.

Required scope

admin