Brault Developers

The webhook event catalogue

Centralapi.brault.appthis host is the same in every region
GET
/v1/events

Every event type a webhook endpoint can subscribe to, with its group, a one-line description and the object its payload’s data carries. Put these tokens in a webhook’s events, or the single element "*" to receive everything, including event types added later.

AuthorizationBearer <token>

API key from Settings → Developers

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/events"
{  "object": "list",  "has_more": true,  "next_cursor": "string",  "data": [    {      "object": "event_type",      "type": "string",      "group": "files",      "description": "string",      "data_object": "string"    }  ]}