curl --request POST \
--url https://api.cadanapay.com/v1/payouts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"beneficiaryId": "c871b333-e129-409c-aabd-7cfb55a967cc",
"quoteId": "d35d2bd6-188b-4e82-9a16-71442dad7375",
"amount": {
"amount": 500000,
"currency": "PHP"
},
"reference": "payout-123"
}
'{
"id": "d0137ede-7df1-4a54-8206-b3ab7b03876f"
}Create a new payout
curl --request POST \
--url https://api.cadanapay.com/v1/payouts \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"beneficiaryId": "c871b333-e129-409c-aabd-7cfb55a967cc",
"quoteId": "d35d2bd6-188b-4e82-9a16-71442dad7375",
"amount": {
"amount": 500000,
"currency": "PHP"
},
"reference": "payout-123"
}
'{
"id": "d0137ede-7df1-4a54-8206-b3ab7b03876f"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
"c871b333-e129-409c-aabd-7cfb55a967cc"
The unique identifier for the fx quote
"d35d2bd6-188b-4e82-9a16-71442dad7375"
Show child attributes
The client reference for the payout
"1234567890"
Payout Created Response
"d0137ede-7df1-4a54-8206-b3ab7b03876f"