# 28.账户充值订单查询

## 基本信息

* 接口类型：HTTPS POST
* 编码格式：UTF-8
* 测试地址：/api/v1.0/bal/recharge/queryOrder
* 生产接口：/api/v1.0/bal/recharge/queryOrder
* 同异步标识：同步

## 请求参数

<table><thead><tr><th width="111.51953125">名称</th><th width="104.5859375">描述</th><th width="108.6640625">字段类型</th><th width="95.1015625">是否必填</th><th>备注</th></tr></thead><tbody><tr><td>requestNo</td><td>请求流水号</td><td>String</td><td>Y</td><td>唯一，不可重复</td></tr></tbody></table>

## 请求示例

```json
{
  "custNo": "158519...017664",
  "request": {
    "requestNo": "20222...240002"
  },
  "verify": "234rfre43...u763ewdft"
}
```

## 待签名字符串

```
"requestNo="+requestNo
```

## 响应结果

| 名称          | 是否必须 | 类型        | 描述                                                                                                                                 |
| ----------- | ---- | --------- | ---------------------------------------------------------------------------------------------------------------------------------- |
| requestNo   | Y    | String    | 商户流水号                                                                                                                              |
| orderId     | Y    | String    | 订单流水号                                                                                                                              |
| transHash   | N    | String    | 支付Hash                                                                                                                             |
| chainName   | N    | String    | 支付网络                                                                                                                               |
| customerId  | Y    | String    | 客户编号                                                                                                                               |
| ccy         | Y    | String    | 订单币种                                                                                                                               |
| amount      | Y    | Number    | 订单金额                                                                                                                               |
| fee         | Y    | Number    | 手续费                                                                                                                                |
| status      | Y    | String    | [订单状态](https://blockpursevcc.gitbook.io/api-document/blockpurse-vcc-jie-kou-wen-dang/fu-lu/zhang-hu-chong-zhi-ding-dan-zhuang-tai) |
| fromAddress | N    | String    | 来款地址                                                                                                                               |
| payCcy      | N    | String    | 支付币种                                                                                                                               |
| payAmount   | N    | Number    | 支付金额                                                                                                                               |
| toAddress   | N    | String    | 收款地址                                                                                                                               |
| finishTime  | N    | Timestamp | 完成时间(时间戳)                                                                                                                          |

## 响应示例

```json
{
  "errorCode":  null,
  "errorMsg": null,
  "result": "dafsdjfnh239u4....odnfb2i3ope",
  "success": true
}
```

## Result解密后示例

```json
{
  "requestNo": "REQ202403150001",
  "orderId": "ORD202403150001",
  "transHash": "0x1234567890abcdef1234567890abcdef1234567890",
  "chainName": "ETH",
  "customerId": "CUS10001",
  "ccy": "USD",
  "amount": 1000.00,
  "fee": 10.00,
  "status": "SUCCESS",
  "fromAddress": "0xabcdef1234567890abcdef1234567890abcdef12",
  "payCcy": "USDT",
  "payAmount": 1010.00,
  "toAddress": "0x1234567890abcdef1234567890abcdef1234567890",
  "finishTime": 1710486000000
}
```
