> For the complete documentation index, see [llms.txt](https://xaigate.gitbook.io/api-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://xaigate.gitbook.io/api-docs/ipns/deposit-withdraw-response.md).

# Deposit/Withdraw Response

### Response (<mark style="color:green;">200 Ok</mark> - https status code) <a href="#response-200-ok-https-status-code" id="response-200-ok-https-status-code"></a>

| **Response**  | **Type** | **Sample Value**            |
| ------------- | -------- | --------------------------- |
| type          | String   | Enum: "deposit", "withdraw" |
| userId        | String   | ​                           |
| amount        | String   | ​                           |
| symbol        | String   | ​                           |
| status        | String   | Enum: "success", "failed"   |
| txid          | String   | ​                           |
| from          | String   | ​                           |
| to            | String   | ​                           |
| confirmations | Int      | ​                           |

### Example Value <a href="#example-value" id="example-value"></a>

```
{
    "type": "deposit",
    "userId": 2512,
    "amount": 0.1,
    "symbol": "BNB",
    "status": "success",
    "txid": "0x75da037d5ea7c4ebc59842052584b4657ad6c02ac7741c5f3193b3a5bf5b39c0",
    "from": "0x88374Fff7618B8d9fE80b5A561Ca601DA8439b45",
    "to": "0xf557a94caeb8886e72cccb1378640105ff369d5b",
    "confirmations": 12
}
```

​
