跳转到主要内容

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-limit-order

请求限制

参见 速率限制详细

请求参数

请求
curl 
 -H 'X-BM-KEY:{{AccessKey}}'
 -H 'X-BM-TIMESTAMP:{{currentTime}}'
 -H 'X-BM-SIGN:{{SIGN}}' 
 -X POST -d '{
  "symbol":"ETHUSDT",
  "order_id":220906179559421,
  "client_order_id":"123456",
  "price":"1450",
  "size":1
}'
https://cloud-api.wooxpro.com/contract/private/modify-limit-order
参数类型是否必填描述
symbolString必填合约交易对(如BTCUSDT)
order_idInt选填订单id(order_id和client_order_id必须提供一个)
client_order_idString选填用户自定义ID
priceString选填限价价格(和size必须填一个)
sizeInt选填订单数量(和price必须填一个)

响应详情

响应
{
  "code": 1000,
  "message": "Ok",
  "data": {
    "order_id": 220609666322019,
    "client_order_id": "123456"
  },
  "trace": "13f7fda9-9543-4e11-a0ba-cbe117989988"
}
字段类型描述
order_idInt订单编号
client_order_idString用户自定义ID