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

# 合约修改计划委托单 (SIGNED)

`适用于用户进行合约修改计划委托订单`

#### 请求URL

`POST https://cloud-api.wooxpro.com/contract/private/modify-plan-order`

#### 请求限制

参见 [速率限制详细](/cn/rate-limit)

#### 请求参数

> 请求

```shell theme={null}
curl 
 -H 'X-API-KEY:{{AccessKey}}'
 -H 'X-API-TIMESTAMP:{{currentTime}}'
 -H 'X-API-SIGN:{{SIGN}}' 
 -X POST -d '{
  "symbol":"ETHUSDT",
  "order_id":"220906179559421",
  "trigger_price":"2000",
  "executive_price":"1450",
  "price_type":1,
  "type":"limit"
}'
https://cloud-api.wooxpro.com/contract/private/modify-plan-order
```

| 参数               | 类型     | 是否必填 | 描述                                                  |
| :--------------- | :----- | :--- | :-------------------------------------------------- |
| symbol           | String | 必填   | 合约交易对（如BTCUSDT）                                     |
| order\_id        | String | 选填   | 订单id(order\_id和client\_order\_id必须提供一个)             |
| trigger\_price   | String | 必填   | 触发价格                                                |
| executive\_price | String | 选填   | 执行价格，订单 type = limit 必填                             |
| price\_type      | Int    | 必填   | 触发价格类型<br />-`1`=最新成交价<br />-`2`=标记价格               |
| type             | String | 必填   | 订单类型<br />-`limit`=执行订单为限价单<br />-`market`=执行订单为市价单 |

#### 响应详情

> 响应

```json theme={null}
{
  "code": 1000,
  "message": "Ok",
  "data": {
    "order_id": "220609666322019"
  },
  "trace": "13f7fda9-9543-4e11-a0ba-cbe117989988"
}
```

| 字段        | 类型     | 描述   |
| :-------- | :----- | :--- |
| order\_id | String | 订单编号 |
