> ## 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/submit-trail-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",
  "side":1,
  "leverage":"1",
  "open_type":"isolated",
  "size":10,
  "activation_price":"2000",
  "callback_rate":"1",
  "activation_price_type":1
}'
https://cloud-api.wooxpro.com/contract/private/submit-trail-order
```

| 参数                      | 类型     | 是否必填 | 描述                                            |
| :---------------------- | :----- | :--- | :-------------------------------------------- |
| symbol                  | String | 必填   | 合约交易对（如BTCUSDT）                               |
| side                    | Int    | 必填   | 订单方向                                          |
| leverage                | String | 必填   | 杠杆下单倍数                                        |
| open\_type              | String | 必填   | 开仓类型<br />-`cross`=全仓<br />-`isolated`=逐仓     |
| size                    | Int    | 必填   | 订单数量 张数                                       |
| activation\_price       | String | 必填   | 激活价格,跟踪委托单必填                                  |
| callback\_rate          | String | 必填   | 回调幅度,跟踪委托单必填,最小值为0.1,最大值为5,其中1表示1%            |
| activation\_price\_type | Int    | 必填   | 激活价格类型,跟踪委托单必填<br />-`1`=最新成交价<br />-`2`=标记价格 |

#### 响应详情

> 响应

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

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