Payout Query API
Tips
- All requests are
Post
requests, and the data format isjson
Brief Description
- None
Request URL
/v1/paypro/queryPayOutResult
Request Method
- POST
Header
Header | Required | Type | Description |
---|---|---|---|
merchantNo | No | string | None |
Request Body Parameters
Name | Required | Type | Description |
---|---|---|---|
tradeNo | Yes | string | Transaction number passed by the merchant when collecting payment |
timestamp | Yes | string | Timestamp |
sign | Yes | string | Encryption |
Request Example
{
"sign": "b94084c49e6292b3eff2b1defea69d55",
"timestamp": "1729156246442",
"tradeNo": "133323392"
}
Successful Response Example
Parameter Name | Required | Type | Description |
---|---|---|---|
msg | Yes | string | Request result (when returning "success", it only indicates that this request was successful; it should not be used for merchant-side logic judgment) |
code | Yes | string | Request response code (when returning "0000", it only indicates that this request was successful; it should not be used for merchant-side logic judgment). For specific error codes, please refer to the business error code enumeration. |
timestamp | Yes | string | Timestamp (e.g., 1715941383720) |
success | Yes | string | Transaction result |
data | Yes | Object | Returned object |
data.platFormTradeNo | Yes | string | Platform order number |
data.tradeNo | Yes | string | Merchant transaction number returned |
data.amount | Yes | string | Actual payment amount |
data.status | Yes | string | Request result; merchants can use it for logical processing. When the result is "0000", it indicates that the transaction is successful; "0015" indicates processing; all others are error codes and can be treated as failures. |
data.message | Yes | string | Error description |
data.successTime | Yes | string | Transaction success time (local time) |
{
"msg": "success",
"code": "0000",
"timestamp": 1729156267022,
"success": true,
"data": {
"platFormTradeNo": "cch55ta98fee3huy",
"tradeNo": "133323392",
"amount": "50000.00",
"status": "00029",
"message": "Processing"
}
}