Skip to main content
POST
/
api
/
external
/
mock
/
simulate-webhook
/
interac
Simulate Interac webhook (non-production)
curl --request POST \
  --url https://api-prod.blaaiz.com/api/external/mock/simulate-webhook/interac \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "interac_email": "customer@example.com",
  "amount": 100.5
}
'
{
  "message": "Webhook sent successfully"
}

Authorizations

Authorization
string
header
required

Use your OAuth client credentials to obtain a short-lived Bearer token from POST /oauth/token.

Body

application/json
interac_email
string<email>

Sender email to include in source_information.collection_email.

amount
number

Optional amount for the simulated Interac transaction.

Response

Webhook sent successfully.

message
string
required