curl --location --request POST 'https://merchant-api.stg.paypaga.com/payout' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"merchant_id": "[YOUR_MERCHANT_ID]",
"country_code": "MX",
"currency": "MXN",
"payment_method_code": "BNKTR",
"transaction": {
"beneficiary": {
"beneficiary_name": "[VALID_BENEFICIARY_NAME]",
"rfc_curp": "[VALID_RFC]",
"beneficiary_email": "[VALID_EMAIL]",
"beneficiary_account": "[VALID_BENEFICIARY_ACCOUNT]",
"beneficiary_account_type": "40",
"counterpart_institution": "[VALID_COUNTERPART_INSTITUTION]"
},
"transaction_data": {
"payout_concept": "Payment for services",
"merchant_transaction_reference": "100000",
"transaction_total": 100.62
}
}
}'