🌎Payout LATAM
This endpoint allows you to initiate a payout transaction to LATAM countries with YoguPay. It is done via Bank Transfer.
Create a LATAM Payout
POST
/payout
Headers
Content-Type
application/json
token
<token>
Body
collection_network*
string
The used
recipient_name*
string
The name of the recipient.
bank_account_number*
string
The bank account number of the recipient.
msisdn
string
The mobile number of the recipient.
dest_currency*
string
The currency in which the recipient will receive the funds.
dest_amount*
number
The amount the recipient will receive .
purpose_of_funds*
string
The purpose of the funds transfer
country_code*
string
The country code of the recipient.
reference_number*
string
A reference unique to your system
bank_code*
string
The of the recipient's bank
recipient_email
string
The email address of the recipient.
account_type*
string
The of Account
document_type*
string
The type of document used for Identification
document_id*
string
The recipients Document ID
bank_name*
string
The name of the recipients Bank
branch_code
string
The Branch Code of the Recipients Bank
Response
curl --location 'https://api.tumapay.com/payout' \
--header 'token: <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"collection_network": "LATAM",
"recipient_name": "John Doe",
"bank_account_number": "01234567898765432",
"msisdn": 702423791,
"dest_currency": "MXN",
"purpose_of_funds": "Fee payment",
"country_code": "MEX",
"reference_number": "Yogupay test",
"dest_amount": 50,
"bank_code": "012",
"recipient_email": "johndoe@yogupay.com",
"account_type": "C",
"document_type": "RFC",
"document_id": "ABCD7215128Y5",
"bank_name": "BBVA Bancomer",
"branch_code": ""
}'
Last updated