Skip to main content
GET
/
webhooks
/
event-types
List available webhook event types
curl --request GET \
  --url https://api.conduit.financial/v2/webhooks/event-types \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "name": "application.approved",
      "description": "Fired when a customer onboarding application is approved",
      "exampleData": {}
    }
  ],
  "signature": {
    "algorithm": "hmac-sha256",
    "headerName": "X-Conduit-Signature",
    "headerFormat": "t=<unix-seconds>,v1=<hex-digest>[,v1=<hex-digest>]",
    "signedPayloadFormat": "<unix-seconds>.<raw-request-body>",
    "secretFormat": "whsec_<64-hex>"
  }
}

Authorizations

x-api-key
string
header
required

Response

data
object[]
required

All subscribable event types. Use the name value verbatim in subscription.eventTypes when creating a SELECTED-mode endpoint.

signature
object
required

Signature verification metadata. Same constants apply to every webhook delivery; signing secrets are per-endpoint.