curl --location --request POST '/minteo/co/create-payout' \
--header 'X-API-Key: {{apiKey}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"payload": {
"fee_type": "FIXED",
"origin_source_id": "4e9d96a2-3376-4eab-8073-63e3a9706719",
"items": [
{
"amount": 1000.0,
"destination_source_id": "bank_account_123",
"purpose": "payment",
"recipient": {
"name": "John Doe",
"legal_identifier_type": "CC",
"legal_identifier": "1099075610",
"country_iso": "CO",
"email": "john@example.com"
}
}
]
}
}'