Transfer Callback
Transfer Callbackrefers the process that our system sends POST request to merchant when the order completes.
Method: POST
Content-Type: application/x-www-form-urlencoded
Parameters:
name | type | DESC | e.g. |
---|---|---|---|
transferno | string | Order number | e7b8ba3bdbf6ee68adc... |
outtransferno | string | Merchant order number | 20200202123ABC... |
tradeamount | string | Amount deducted from merchant account | 101 |
transferamount | string | Amount transfered | 100 |
endtime | string | Payment time | 2020-01-01 02:02:03 |
remark | string | Remarks | abcd |
status | string | Order status: 1 Paid; | 1 |
sign | string | Signature | e10adc3949bae20f883e... |
Expected responses
When merchant receives our system's request and confirms the order, please response a plain text response 'success'.
Content-Type:text/plain
Payment Order Status:
• 0 = Pending Settlement
• 1 = Settlement Completed
• 2 = Settling
• 3 = Settlement (Manual)
• 4 = Settlement Canceled
Settlement Order Modification Restrictions:
• Orders with status 1 (Completed) and 4 (Canceled) are final statuses and cannot be modified further.
• Orders with status 0 (Unprocessed), 2 (Settling), and 3 (Settlement Error) are temporary statuses and can be modified to another status in the backend.