> ## Documentation Index
> Fetch the complete documentation index at: https://opendocs.xft.xin/llms.txt
> Use this file to discover all available pages before exploring further.

# 商户余额解冻申请结果查询

## 功能说明

申请解冻后，调用本接口查询解冻状态。

## 请求地址

`POST /unfreeze/query`

## 请求参数

| 字段              | 类型         | 必填 | 说明                       |
| --------------- | ---------- | -- | ------------------------ |
| `out_trade_no`  | string(64) | 是  | 商户解冻申请订单号，业务系统解冻时请求唯一流水号 |
| `merchant_code` | string(32) | 是  | 商户号                      |

## 请求示例

```json theme={null}
{
  "merchant_code": "226801000000865319122",
  "out_trade_no": "ea51203e1a0146d7954b391118aecaf7"
}
```

## 响应参数

| 字段             | 类型     | 说明                                                               |
| -------------- | ------ | ---------------------------------------------------------------- |
| `out_trade_no` | string | 商户解冻申请订单号                                                        |
| `failure_msg`  | string | 失败原因，解冻失败时返回                                                     |
| `state`        | string | 解冻状态；`succeeded` 表示成功；`fail` 表示失败；`pending` 表示处理中，处理中需调用查询接口查询状态 |

## 响应示例

```json theme={null}
{
  "out_trade_no": "ea51203e1a0146d7954b391118aecaf7",
  "state": "succeeded",
  "failure_msg": ""
}
```
