1. Query API
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. Query API

Payout Order Query

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

Request Parameters#

Field NameTypeDescriptionRequiredExample
order_noStringMerchant order numberYesTX10000000000001
trade_noStringPlatform transaction numberNoPI10000000000001
Request Example
{
  "order_no": "TX10000000000001",
  "trade_no": "PI10000000000001"
}

Response Parameter Description#

Field NameTypeDescriptionRequiredExample
codeintResponse status code 200: request successful, otherwise refer to response status descriptionYes200
msgStringDescriptionYesSUCCESS
dataobjectSuccess dataYesContains the following data
trade_noStringPlatform transaction numberYesPO0000000000001
order_noStringMerchant order numberYesTX10000000000001
statusStringOrder status: PROCESSING-processing , SUCCEEDED-success, FAILED-failed ,EXPIRED-timeout ,REVERSAL-reversalYesPROCESSING
amountnumberOrder amountYes1000.00
currencyStringCurrencyYesINR
feenumberFeeYes20.00
complete_atLongOrder completion time, unix timestamp: millisecondsNo1767315722000
remarkStringTransaction remarkNo
payee_nameStringPayee nameNo
notify_urlStringCallback URLYes
user_ipStringUser IPYes
payment_methodStringPayment method code, please refer to payment method listYes
expires_atLongOrder expiration time, unix timestamp: secondsYes3600
create_atLongCreation time, unix timestamp: millisecondsYes1767315722000
protocolStringCryptocurrency transaction protocol (chain/network, e.g. TRC20, ERC20, BTC)No
hashStringCryptocurrency transaction hashNo
tagStringCrypto wallet address tag (required for some cryptocurrencies)No
utrStringIndia UPI, bank transfer UTRNo
Response Example - Query Success
{
  "code": 200,
  "msg": "BIZ_OPERATION_SUCCESS",
  "data": {
    "trade_no": "PO2008652201295216703",
    "order_no": "Payout-004364565402",
    "status": "FAILED",
    "amount": "12000",
    "currency": "IDR",
    "fee":20.00,
    "complete_at":12435646344365464,
    "remark":"",
    "payee_name":"Jean",
    "notify_url":"",
    "user_ip": "151.67.72.12",
    "payment_method":"UPI_QR",
    "expires_at": 1767315722,
    "create_at": 1767734979000,
    "protocol": "TRC20",
    "hash":"2342342dsfdfwe23242"
    "tag":"",
    "utr":""
  }
}
Response Example - Failure
{
  "code": 3001,
  "msg": "Order not found",
  "data": null
}
Modified at 2026-05-29 13:29:16
Previous
Collection Order Query
Next
Wallet Query
Built with