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": "BR",
"currency": "BRL",
"payment_method_code": "BNKTR",
"transaction": {
"beneficiary": {
"beneficiary_name": "Pedro Lopes",
"beneficiary_type": "INDIVIDUAL",
"beneficiary_id": "43000000000",
"beneficiary_id_type": "CPF",
"beneficiary_pix_key": "43000000000"
},
"transaction_data": {
"payout_concept": "brazil payout transaction",
"merchant_transaction_reference": "10000",
"transaction_total": 100.25
}
}
}'