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

Get webhook by ID

GET request to /v2/notifications/webhooks/

Authorizations

Authorization
string
header
required

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

Path Parameters

webhook-id
string<uuid>
required

Response

OK

webhook
object