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 webhook targets using cursor pagination.
targets = await mesa.webhook_targets.list(limit=50)

for target in targets.webhook_targets:
    print(target.id, target.url, target.events)

Options

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

Response

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

Required scope

admin