Skip to main content
POST
/
api
/
external
/
webhook
Register webhook URLs
curl --request POST \
  --url https://api-prod.blaaiz.com/api/external/webhook \
  --header 'Content-Type: application/json' \
  --header 'x-blaaiz-api-key: <api-key>' \
  --data '
{
  "payout_url": "https://yourapp.com/webhooks/payout",
  "collection_url": "https://yourapp.com/webhooks/collection"
}
'
{
  "message": "Webhook URLs registered successfully"
}

Authorizations

x-blaaiz-api-key
string
header
required

Body

application/json
payout_url
string<uri>
required

URL to receive payout event notifications

collection_url
string<uri>
required

URL to receive collection event notifications

Response

Webhook URLs registered successfully

message
string
required