cURL
curl --request GET \ --url https://api.mesa.dev/v1/{org}/webhooks \ --header 'Authorization: Bearer <token>'
{ "next_cursor": "<string>", "has_more": true, "webhooks": [ { "id": "<string>", "url": "<string>", "events": [ "repo.created" ], "repo_ids": [ "<string>" ], "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" } ] }
List webhooks for the organization
admin
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
1
Opaque pagination cursor from a previous response
Maximum number of items to return (max 100)
1 <= x <= 100
Webhook list
Cursor for the next page, or null when no more results remain
Whether another page of results is available
Show child attributes