Brault Developers

Send a test delivery

Regionalus.api.brault.appfollows the region selector in the top bar
POST
/v1/webhooks/{webhookId}/test

Delivers a synthetic webhook.test event inline and returns the resulting delivery. One attempt, no retry, no effect on the endpoint’s failure counters, and it works on any status including disabled. Worst-case latency is the 5 s attempt timeout plus DNS. A failed test is a 200 with a delivery whose status is exhausted, not an error. DO NOT send an Idempotency-Key: a repeat inside 24 h would replay the first attempt’s delivery without sending anything.

AuthorizationBearer <token>

API key from Settings → Developers

In: header

Path Parameters

webhookId*string

Response Body

application/json

application/json

curl -X POST "https://example.com/v1/webhooks/string/test"
{  "object": "delivery",  "id": "string",  "webhook_id": "string",  "event_id": "string",  "event_type": "string",  "status": "pending",  "attempt": 1,  "scheduled_at": "2019-08-24T14:15:22Z",  "delivered_at": "2019-08-24T14:15:22Z",  "http_status": 0,  "duration_ms": 0,  "error_code": "string",  "response_excerpt": "string",  "request_id": "string",  "origin": "fanout",  "replayed_from_id": "string",  "created_at": "2019-08-24T14:15:22Z"}