Capvant

The event catalogue

get
https://sandbox.capvant.com/partner/v1/webhook-events
GET
/webhook-events

Every event, plus how a delivery is signed and how it is retried. Everything needed to verify a payload is on this one page.

Authorization

AuthorizationBearer <token>

An access token from POST /oauth/token. Valid for one hour. Preferred, because a leaked request log then exposes an hour rather than a permanent credential.

In: header

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

Shell
curl -X GET "https://sandbox.capvant.com/webhook-events"
JSON
{  "events": [    {      "value": "string",      "label": "string",      "description": "string"    }  ],  "signature": {    "header": "string",    "event_header": "string",    "delivery_header": "string",    "algorithm": "string",    "encoding": "string",    "format": "string",    "signed_payload": "string"  },  "delivery": {    "method": "string",    "content_type": "string",    "expected_response": "string",    "max_attempts": 0,    "retry_delays_seconds": [      0    ]  }}