POST
/
api
/
v1
/
pay
/
simulate-payout-notification
curl --request POST \
  --url https://adapter.cepta.co/api/v1/pay/simulate-payout-notification \
  --header 'Content-Type: application/json' \
  --header 'X-Access-Key: <api-key>' \
  --header 'X-Access-Signature: <api-key>' \
  --header 'X-Access-Ts: <api-key>' \
  --data '{
  "reference": "<string>",
  "isSuccess": true,
  "message": "<string>"
}'
{
  "status": true,
  "message": "<string>"
}

Authorizations

X-Access-Key
string
header
required

Access key from Dashboard

X-Access-Signature
string
header
required

HMAC-SHA256 signature (hex lowercase)

X-Access-Ts
string
header
required

Unix timestamp in seconds (UTC) as a string

Body

reference
string
required

The transaction reference of the payout to simulate

isSuccess
boolean
required

Set to true to simulate a successful payout, false to simulate a failure

message
string | null

Optional message describing the simulated outcome (e.g., "Insufficient funds at provider")

Response

200
text/plain
Success
status
boolean
message
string | null