> ## 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.

# 解冻成功通知

## 功能说明

解冻处理完成后，平台会向解冻申请时传入的 `notify_url`（解冻成功后异步通知地址）发送通知。商户接收通知后，HTTP 状态码返回 200，且响应体返回 `SUCCESS`，表示接收成功。

## 通知地址

商户在商户余额解冻申请接口中传入的 `notify_url`，请求方式为 `POST`。

## 通知参数

| 字段             | 类型          | 必填 | 说明                          |
| -------------- | ----------- | -- | --------------------------- |
| `out_trade_no` | string(64)  | 是  | 商户订单号                       |
| `status`       | string(32)  | 是  | 状态；`succeeded` 成功；`fail` 失败 |
| `failure_code` | string(64)  | 否  | 失败 code，失败时返回               |
| `failure_msg`  | string(256) | 否  | 失败原因，失败时返回                  |
| `Finish_time`  | string(20)  | 否  | 完成时间                        |

## 通知示例

```json theme={null}
{
  "out_trade_no": "1698218591054",
  "status": "succeeded",
  "failure_code": "",
  "failure_msg": "",
  "Finish_time": "20231025152315"
}
```

## 响应要求

HTTP 状态码返回 `200`，HTTP 响应体返回 `SUCCESS`。

```text theme={null}
SUCCESS
```
