Create Payout Transaction
Read on how to create payout transactions in our system
POST /users/{{user_id}}/transactions
POST /users/{{user_id}}/transactionscurl --location --request POST '{{url}}/users/{{user_id}}/transactions' \
--header 'X-Client-Id: client_id' \
--header 'X-Client-Secret: client_secret' \
--header 'Content-Type: application/json' \
--data-raw '{
"from_amount": 10,
"exchange_rate": 3700,
"to_amount": 37800,
"fee_amount": 0,
"note": "Sample Note",
"to_currency": "COP",
"from_currency": "USD",
"custom_purpose": "home",
"purpose": "OTHER",
"txn_type":"PAYOUT",
"ip_address": "10.10.10.5",
"to": {
"payout_method": "BANK_DEPOSIT",
"branch_id": 153,
“bank_id”:110,
“bank_name”:”Digital Bank”,
"address_line1": "500 El Camino Real Santa Clara",
"first_name": "Pablolito",
"last_name": "Doe",
"mobile_phone": "233541859101",
"email": "[email protected]",
"account_type":"SAVINGS",
"account_number":"2662030100",
"rtn_number":"026009593",
"destination_country": "CO",
"city": "california",
"country": "US",
"state": "CA"
},
"from": {
"first_name": "first",
"last_name":"last",
"country": "US",
"date_of_birth": "2000-01-01",
"gender": "Male",
"address_line1": "500 8 El Camino Real Santa Clara",
"city": "california",
"mobile_phone": "1234567890",
"email": "[email protected]",
"state": "CA"
}
}’
Last updated