BankTransfer

Example


curl --location --request POST 'https://api.topay.mobi/v1/order/payout' \
--header 'Content-Type: application/json' \
--data-raw '{
    * "request_id": "custom_code9982674851738108",
    * "currency": "INR", 
    * "amount": "15000",
    * "settle_currency": "INR", 
    * "payout_method": "bank_transfer",   // fixed value: bank_transfer
    * "bank_code": "bank_card", //fixed value: bank_card
    * "country": "IN", 
    * "account_name": "Suvidhaa",
    * "account_no": "397505***09",
    * "bank_routing_code": "HDFC0001234", //IFSC (Indian Financial System Code)    
    * "phone": "087*******99",
    * "email": "[email protected]", 
    * "notify_url": "https://notify.url",
    * "remark": "payout test remark",
    
}'

Last updated