curl --location --request POST 'https://merchant-api.stg.paypaga.com/payout' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"country_code": "CO",
"currency": "COP",
"payment_method_code": "bank_transfer",
"transaction": {
"beneficiary": {
"first_name": "Customer first name",
"last_name": "Customer last name",
"document_type": "See Document type enum",
"document_number": "Customer document Number",
"bank_name": "Bank Name",
"account_type": "See Account type enum",
"account_number": "Customer account Number",
"email": "Customer email",
"phone": "Customer phone",
"address": "Customer address"
},
"transaction_data": {
"payout_concept": "Payment for services",
"merchant_transaction_reference": "100000",
"transaction_total": 100.62
}
}
}'