v1

latestOpenAPI 3.0.02026-07-266521,3121.2 MB
OpenOrders

GetOpenOrdersDetails

Open order details by order ids. Not limited by the number of orders you can retrieve. This call is designed to return ONLY open orders, it is much faster than GetOrderDetail call <b>Permissions Required: </b> GlobalPermissions.OrderBook.ViewOrderDetailsNode <b>Rate limit: </b><span style="background-color:#0272d9;color:white;padding:4px 8px;text-align:center;border-radius:5px; font-size: small;"><b>150</b></span> / minute

post/api/OpenOrders/GetOpenOrdersDetails

Request body

OrderIdsstring[]

List of order ids as unique identifiers

DetailLevelstring[]

(optional) List of detail level limiters. If the list is null or empty Full details will be returned, as in all detail levels are applied

Example request

{
  "OrderIds": [
    "00000000-0000-0000-0000-000000000000"
  ]
}

Response

OK

Example response

{
  "Orders": [
    {
      "OrderId": "00000000-0000-0000-0000-000000000000",
      "FulfilmentLocationId": "00000000-0000-0000-0000-000000000000"
    }
  ]
}