Skip to main content
GET
/
{org}
/
{repo}
/
webhooks
List webhooks
curl --request GET \
  --url https://depot.mesa.dev/api/v1/{org}/{repo}/webhooks \
  --header 'Authorization: Bearer <token>'
{
  "webhooks": [
    {
      "id": "<string>",
      "url": "<string>",
      "events": [
        "push"
      ],
      "branches": [
        "<string>"
      ],
      "globs": [
        "<string>"
      ],
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

org
string
required
Minimum string length: 1
repo
string
required
Minimum string length: 1

Response

Webhook list

webhooks
object[]
required