Webhooks

Get all Webhook Registrations

GET
Register a new Webhook and Get all Registrations

Response

This endpoint returns an object
id
string
webhook_name
string
endpoint
string
status
string
failures
integer
last_failure
datetime
partner_id
stringOptional
GET
1curl /v2/webhooks/registrations/ \
2 -H "Authorization: Bearer <token>"
200
Retrieved
1{
2 "id": "id",
3 "webhook_name": "webhook_name",
4 "endpoint": "endpoint",
5 "status": "status",
6 "failures": 1,
7 "last_failure": "2024-01-15T09:30:00Z",
8 "partner_id": "partner_id"
9}