# Withdraw Status

**Request URL：**

* `/v1`/token/withdraw\_status

**Method:**

* POST

**Parameter:**

| Parameter name | Required | Type   | Explain |
| -------------- | -------- | ------ | ------- |
| merchant\_id   | Yes      | string |         |
| hash           | Yes      | string |         |
| data           | Yes      | object |         |
| —order\_id     | Yes      | string |         |
| —nonce         | Yes      | string |         |
| —timestamp     | Yes      | number |         |

**Request example**

```json
{
  "merchant_id": "9cc5c-d243a-9f952-66b92",     // Replace with your actual merchant ID
  "hash": "sm2uliyCbmCP0ISZw/Cm41qO3jbww7VdoH27MLWfrcDHY7IfiEPIC72VCovIlEfmeQAI3wFrKoZiflbCJKpFOA==",          // Replace with the actual encrypted hash
  "data": {
    "order_id": "17188041436139639757",     // Blockchain network (e.g., "tron")
    "nonce": "abcde12345",               // Randomly generated string for uniqueness
    "timestamp": 1627893600                 // Current timestamp (in seconds)
  }
}

```

**Return example**

```json
  {
    "statusCode": 200,
    "order_id": 177239283928
    "chain" : "tron",
    "symbol" : "usdt",
    "amount" : 1,
    "address" : "TXsdaf34234234",
    "txid": "asdf123123123123123",
    "status": "Done",
}
```

**Return parameter description**

<table><thead><tr><th>Parameter name</th><th width="169.33333333333331">Type</th><th>Explain</th></tr></thead><tbody><tr><td>statusCode</td><td>int</td><td></td></tr><tr><td>status</td><td>String</td><td>Pending <br>Processing <br>Confirming <br>Done <br>Failed <br>Cancelled</td></tr></tbody></table>
