Skip to main content
GET /accounts/{account_id}/webhooks/deliveries
Required scope: webhooks:read. Delivery logs are useful for debugging:
  • Whether Brale attempted delivery
  • What HTTP status your endpoint returned
  • Whether a delivery was retried
  • Failure messages
  • Attempt numbers

Path parameters

NameTypeDescription
account_idstringThe Brale account whose delivery attempts you want to list.

Query parameters

NameTypeDescription
page[size]integerPage size.
page[after]stringCursor for the next page.
page[before]stringCursor for the previous page.
Do not send both page[after] and page[before].

Example request

curl "https://api.brale.xyz/accounts/{account_id}/webhooks/deliveries?page[size]=25" \
  -H "Authorization: Bearer {access_token}"
See the Webhooks overview for how delivery, retries, and signatures work.