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

Get webhook event by ID

GET request to /v2/notifications/webhooks/events/

Authorizations

Authorization
string
header
required

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

Path Parameters

event-id
string<uuid>
required

Response

OK

event
object