Transfer Result
Path:/hypercard/sdk/merchant/transfer/result
Method:POST
Content-Type:application/json
Response Content-Type:application/json
Description:
Example Request:
{
  "order_no": "48d2741747a4493223feb22"
}
Request Parameter:
| Parameter Name | Type | Required | Description | 
|---|---|---|---|
| order_no | string | true | Merchant transaction business no | 
API Response:
| Parameter Name | Description | Type | 
|---|---|---|
| code | Error code | string | 
| data | object | Data object for this respond | 
| amount | Transfer amount | string | 
| coin | Coin type name | string | 
| order_no | Merchant transaction business no | string | 
| reason | Fail reason | string | 
| status | Transfer status; 0:In operation, 1:Success, 2:Fail, 3:To be verify, 4:Verifying, 5:Verify fail | integer | 
| type | Transfer type, 1:from merchant to user account; 2: from user to merchant account | integer | 
| msg | Error message | string | 
Example Response:
{
  "code": "00000",
  "data": {
    "amount": "888.88888888",
    "coin": "usdt",
    "order_no": "48d2741747a4493223feb22",
    "reason": "Fail reason",
    "status": 1,
    "type": 1
  },
  "msg": "ok"
}