Skip to main content
POST
/
v1
/
payouts
Create
curl --request POST \
  --url https://api.cadanapay.com/v1/payouts \
  --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"
}

Body

application/json
beneficiaryId
string<uuid>
required
Example:

"c871b333-e129-409c-aabd-7cfb55a967cc"

quoteId
string<uuid>
required

The unique identifier for the fx quote

Example:

"d35d2bd6-188b-4e82-9a16-71442dad7375"

amount
object
required
reference
string

The client reference for the payout

Example:

"1234567890"

Response

Payout Created Response

id
string<uuid>
Example:

"d0137ede-7df1-4a54-8206-b3ab7b03876f"