- Access Guide
- Core Business Process Description
- Attachment Code Table
- deposit
- withdraw
- account
- CallBack
Reprocess TrxId
Developing
POST
/api/trxSupplement
User has paid, but the order has not been successfully processed. Please provide the trxId for reprocessing the order.#
Request
Body Params application/json
mchNo
string
Merchant number
trxId
string
trxId
mchOrderNo
string
Merchant Order Number
Example
{
"mchNo": "M1658884178",
"trxId": "BI63CWYFV9",
"mchOrderNo": "D1660810866750"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/trxSupplement' \
--header 'Content-Type: application/json' \
--data-raw '{
"mchNo": "M1658884178",
"trxId": "BI63CWYFV9",
"mchOrderNo": "D1660810866750"
}'
Responses
🟢200成功
application/json
Body
code
integer
required
data
object
required
mchOrderNo
string
Merchant Order Number
message
string
Error message
payOrderId
string
平Platform Order Number台订单号
status
integer
status
trxId
string
required
msg
string
required
sign
string
required
Example
{
"code": 0,
"data": {
"mchOrderNo": "D1660810866750",
"message": "not paid",
"payOrderId": "P1560179978363322369",
"status": 0,
"trxId": "BI63CWYFV9"
},
"msg": "SUCCESS",
"sign": "304602210085734f62a5829ae369eb24bd2bd59485d70d2d1cd7d0eaebedc26fea5c7d73d2022100f5b46b15ad36795185378d15b710e47914549d4b0b65af2544da740a088864a4"
}