1. Payout
English
  • Chinese
  • English
  • Open API Documentation
  • Payin
    • Payin Order - General
    • Payin Order - India
    • Payin Order - Philippines
    • Payin Order - Indonesia
    • Payin Order - Vietnam
    • Payin Order - Cryptocurrency
    • Payin Order - China
    • Payin Order - Malaysia
    • Payin Order - Pakistan
    • Payin Order - Thailand
  • Payout
    • Payout Order - General
    • Payout Order - India
    • Payout Order - Philippines
    • Payout Order - Indonesia
    • Payout Order - Vietnam
    • Payout Order - Cryptocurrency
    • Payout Order - Malaysia
    • Payout Order - Pakistan
    • Payout Order - Thailand
  • Callback Notification
    • Callback Description
    • Collection Callback
    • Payout Callback
  • Query API
    • Collection Order Query
    • Payout Order Query
    • Wallet Query
  • Examples of encryption and signature
    • Go Language Encryption and Signature Example
    • Python Encryption and Signature Example
    • PHP encryption and signature example
    • Node.js encryption and signature example
    • Environment variables and request body JSON example
    • Java encryption and signature example
  • Other instructions
    • Response Status Description
    • Order Status Description
    • Payment Method List
    • Bank Code List
    • Checkout iframe Copy Function Support Description
    • Backend Login Instructions
  1. Payout

Payout Order - India

Brief Description
Payout Order
Request URL
/api/v1/payouts
Request Method
POST
Request Format
Content-Type: application/json

Request Parameters#

Field NameTypeDescriptionRequiredExample
titleStringOrder titleNoPayment order
order_noStringMerchant order number (max 64 characters, must be unique)YesTX10000000000001
amountnumberOrder amountYes666.8
currencyStringCurrencyYesINR
payment_methodStringPayment method code BANK_TRANSFER, please refer to payment method listYesBANK_TRANSFER
callback_urlStringCallback notification URLYeshttp://www.aaa.com/callback
user_ipStringUser real IP address. To improve payment success rate, please provide the user’s real IPYes
remarkStringTransaction description (max 200 characters)NoPayout test
payeeobjectPayee informationYessee fields below
account_noStringPayee account info (crypto address / bank account / India UPI / wallet account etc.)Yes9080898933
ifscStringIndia bank IFSC codeYes7080898966
nameStringPayee name (UTF-8 encoded)YesAshy Phlip
user_idStringUnique user identifier (account or ID)Yestest001
Request Example
{
  "title": "Payment Order",
  "order_no": "test-payout-Titan0019",
  "amount": 200,
  "currency": "INR",
  "payment_method": "BANK_TRANSFER",
  "callback_url": "http://www.test.com/callback",
  "user_ip": "151.67.72.12",
  "remark": "test payout order",
  "payee": {
    "account_no": "82460308992",
    "ifsc": "75935698669",
    "name": "Katlyn Roberts",
    "user_id": "test001"
  }
}

Response Parameters#

Field NameTypeDescriptionRequiredExample
codeintStatus code (200: request success, others: error)Yes200
msgStringDescriptionYessuccess
dataobjectSuccessful response dataYesincludes the following fields
trade_noStringPlatform transaction numberYesPI0000000000001
order_noStringMerchant order numberYesTX10000000000001
statusStringPROCESSING: processingYesPROCESSING
messageStringResponse messageYessuccess
amountnumberOrder amountYes1000.00
currencyStringCurrencyYesINR
feenumberFeeYes20.00
Response Example - Success
{
  "code": 200,
  "msg": "BIZ_OPERATION_SUCCESS",
  "data": {
    "trade_no": "PO2008632334231928898",
    "order_no": "test-payout-Titan0019",
    "status": "PROCESSING",
    "message": "success.",
    "amount": "200",
    "currency": "INR",
    "fee": "4"
  }
}
Response Example - Failure
{
  "code": 4002,
  "msg": "Payment method code not supported",
  "data": null
}
Modified at 2026-05-29 13:43:08
Previous
Payout Order - General
Next
Payout Order - Philippines
Built with