curl --location --request POST '/fuse/payout' \
--header 'X-API-Key: {{apiKey}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"payload": {
"account_id": "123e4567-e89b-12d3-a456-426614174000",
"amount": 1000,
"country": "usa",
"currency": "USD",
"external_reference": "payment-ref-123",
"purpose": "salaries",
"beneficiary": {
"account_holder_name": "John Doe",
"account_identifier": {
"iban": "AE123456789012345678901"
},
"address": {
"country_code": "AE",
"line_1": "123 Main Street",
"line_2": "Apt 4B"
},
"type": "individual",
"bank": {
"code": "ABCDAEAD"
},
"email": "john@example.com",
"phone": "+971501234567"
}
}
}'