POST https://{baseUrl}/api/sp2305
Request Parameters
Your merchant order number for the transfer to query.
Response Body
Echo of your merchant order number. Unique.
Sender amount and currency information.
Sender’s currency code (ISO 4217).
Sender’s amount. Two decimal places, format: 999999.99.
Receiver amount, currency, and bank country information.Show receiverAmount fields
Receiver’s currency code (ISO 4217).
Receiver’s amount. Two decimal places, format: 999999.99.
ISO 3166-1 alpha-2 country code of the receiver’s bank.
Fee information. Fields are populated when the transfer succeeds.
Fee currency. Present when the transfer succeeds.
Fee amount. Present when the transfer succeeds.
Transfer status and reference information.
System business flow number. Consistent with the value returned by sp1306. Retain this for reconciliation.
Sender’s registered ID. Present once the transfer is successfully confirmed.
Receiver’s registered ID. Present once the transfer is successfully confirmed.
Settlement network used: LOCAL or SWIFT.
Exchange rate applied to this transfer.
Current order status:
PROCESS — Processing
SUCC — Successful
FAIL — Failed
Completion timestamp (Unix milliseconds). Only present when the transfer reaches a terminal state (SUCC or FAIL).
Transaction response code.
Transaction response message.
{
"merOrderNo": "335621309488900"
}
{
"merOrderNo": "335621309488900",
"senderAmount": {
"currency": "CNY",
"amount": "712.50"
},
"receiverAmount": {
"currency": "USD",
"amount": "100.00",
"bankCountry": "US"
},
"feeObject": {
"feeCurrency": "CNY",
"feeAmt": "15.00"
},
"infoObject": {
"bizFlow": "21875022415083500099",
"senderId": "a1b2c3d4e5f6",
"receiverId": "f6e5d4c3b2a1",
"settlementNetwork": "SWIFT",
"rate": "7.1250",
"status": "SUCC",
"finishTimestamp": 1739500557000,
"code": "S00000",
"message": "Success"
}
}