Order list

order list

post

Description: Query the trading bridge order list (only orders within three months can be queried)

group=tradeApi 
version=0.0.1 
bizType=tradeapi.admin.OrderAdminApiService.queryDirectOrderList 
Header parameters
companyIdstringrequired

Company ID

Example: {{company}}
tracestringrequired

Global link unique identifier

Example: {{mock_trace}}
apiKeystringrequired

apiKey

Example: {{apikey}}
recvWindowstringoptional

time window

Example: 5000
signaturestringrequired

sign

Example: {{sign}}
langstringoptional

language

Example: zh-CN
versionstringrequired

Interface version

Example: 0.0.1
groupstringrequiredExample: tradeApi
Body
tradeTypeinteger · longrequired

Game type. 10-Transaction Bridge;

exchangeIdstringrequired

Platform identifier. binance-Binance; okx-OUYi

accountNamestringrequired

Platform account alias

customerIdinteger · longoptional

CustomerId

customerNostringrequired

Customer code

customerGroupIdinteger · longrequired

Customer group ID

symbolIdinteger · longrequired

ProductId

startTimeinteger · longoptional

The start timestamp of filtering, a 13-digit timestamp. The time interval set between startTime and endTime cannot exceed 24 hours.

endTimeinteger · longoptional

The end timestamp of filtering, a 13-digit timestamp. The time interval set between startTime and endTime cannot exceed 24 hours.

limitinteger · longoptional

The number of results returned, default 20, maximum 100. If it is less than 1 or greater than 100, only 20 items will be returned.

Responses
curl -L \
  --request POST \
  --url '/global/tradeapi.admin.OrderAdminApiService.queryDirectOrderList' \
  --header 'companyId: text' \
  --header 'trace: text' \
  --header 'apiKey: text' \
  --header 'signature: text' \
  --header 'version: text' \
  --header 'group: text' \
  --header 'Content-Type: application/json' \
  --data '{
    "tradeType": 1,
    "exchangeId": "text",
    "accountName": "text",
    "customerId": 1,
    "customerNo": "text",
    "customerGroupId": 1,
    "symbolId": 1,
    "startTime": 1,
    "endTime": 1,
    "limit": 1
  }'
{
  "bizCode": "text",
  "code": "text",
  "msg": "text",
  "tm": 1,
  "trace": "text",
  "msgParams": "text",
  "ok": true,
  "fail": true,
  "data": [
    {
      "exchangeId": "text",
      "orderId": "text",
      "clientOrderId": "text",
      "status": "text",
      "timeInForce": "text",
      "symbolId": 1,
      "bizType": 1,
      "direction": 1,
      "price": "text",
      "num": "text",
      "amount": "text",
      "executeNum": "text",
      "executeAmount": "text",
      "updateTime": 1
    }
  ]
}

Last updated