Webhook Events

The available webhook events that you can subscribe to.


Get Event Types

GET/v1/reference-data/webhook-subscriptions/events

Returns the list of all available webhook event type strings. Use these values when creating or updating webhook subscriptions.

Request

GET
/v1/reference-data/webhook-subscriptions/events
  curl -G https://api.flowbrite.io/v1/reference-data/webhook-subscriptions/events \
  -H "X-API-KEY: {api_key}"

Responses

Example Responses

{
  "data": [
    "ping",
    "payment.draft",
    "payment.ready_to_send",
    "payment.sent",
    "payment.failed",
    "payment.cancelled",
    "payment_instruction.pending",
    "payment_instruction.acknowledged",
    "payment_instruction.filled",
    "payment_instruction.sent",
    "payment_instruction.cancelled",
    "payment_instruction.rejected",
    "payment_instruction.failed",
    "conversion.booked",
    "conversion.exchanged",
    "conversion.cancelled",
    "inbound_funds.pending",
    "inbound_funds.credited",
    "inbound_funds.rejected",
    "transaction.completed"
  ]
}