v1

latestOpenAPI 3.1.02026-08-0671638.9 KB

Get Active Webhook

Retrieves the currently active webhook configuration for the authenticated client. Returns 404 if no active webhook is configured.

get/api/v1/cash/webhooks/active

Headers

X-Client-Idstring required

Client API key (32-character hex)

X-Signaturestring required

HMAC-SHA256 signature generated using api_secret

X-Timestampstring required

Unix timestamp (seconds since epoch)

Response

Active webhook configuration found

idinteger

Webhook configuration ID

endpoint_urlstring uri

Active webhook endpoint URL

is_activeboolean

Webhook active status

created_atstring date-time

ISO 8601 timestamp of creation

updated_atstring date-time

ISO 8601 timestamp of last update

Example response

{
  "id": 456,
  "endpoint_url": "https://your-webhook-endpoint.com/webhooks",
  "is_active": true,
  "created_at": "2025-01-15T10:30:00Z",
  "updated_at": "2025-01-15T10:30:00Z"
}