> For the complete documentation index, see [llms.txt](https://docs.cn.omnibridge.pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cn.omnibridge.pro/integration/submit-hash.md).

# 提交存币hash

> 给订单提供存币hash

**1. 接口调用：**

```
 https://{host}/api/v2/modifyTxId
```

**2. 请求参数实例**

| 参数          | 是否必须 | 说明      |
| ----------- | ---- | ------- |
| orderId     | 是    | 交易订单号   |
| depositTxid | 是    | 交易hash值 |

**3.请求参数示例**

```
{
    "orderId": "33120af8-1866-4cb6-99a8-2c303f490c2c",           
    "depositTxid": "0x123"      
}
```

**4.返回结果示例**

```
{
    "resCode": "800",
    "resMsg": "成功",
    "data": "SUCCESS"
}
```
