Skip to main content
POST
/
transactions
/
webhooks
/
resend
/
{reference}
Resend all webhooks for a reference
curl --request POST \
  --url https://api.breet.io/v1/transactions/webhooks/resend/{reference} \
  --header 'X-Breet-Env: <api-key>' \
  --header 'x-app-id: <api-key>' \
  --header 'x-app-secret: <api-key>'
{
  "success": true,
  "message": "webhook resend attempted",
  "data": [
    {
      "id": "67a1b2c3d4e5f67890123456",
      "status": "delivered"
    },
    {
      "id": "67a1b2c3d4e5f67890123457",
      "status": "failed",
      "error": "webhook delivery failed"
    }
  ],
  "meta": {},
  "summary": {},
  "stats": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.breet.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-app-id
string
header
required

Your application ID from the Breet dashboard

x-app-secret
string
header
required

Your application secret from the Breet dashboard

X-Breet-Env
string
header
required

Environment selector: development or production

Path Parameters

reference
string
required

Trade or withdrawal document ID (same value as reference on webhook payloads).

Required string length: 1 - 32

Response

Resend attempts completed (per-event results may show delivered or failed)