Skip to main content
GET
/
v2
/
notifications
/
webhooks
List webhooks
curl --request GET \
  --url https://api.example.com/v2/notifications/webhooks/ \
  --header 'Authorization: Bearer <token>'
{
  "webhooks": [
    {
      "accountId": "<string>",
      "createdAt": "<string>",
      "id": "<string>",
      "subscriptions": [],
      "updatedAt": "<string>",
      "url": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

OK

webhooks
object[]