Query All Current UM Open Orders(USER_DATA)
API Description
Get all open orders on a symbol.
HTTP Request
GET /papi/v1/um/openOrders
Request Weight
1 for a single symbol; 40 when the symbol parameter is omitted
Request Parameters
| Name | Type | Mandatory | Description | 
|---|---|---|---|
| symbol | STRING | NO | |
| recvWindow | LONG | NO | |
| timestamp | LONG | YES | 
- If the symbol is not sent, orders for all symbols will be returned in an array.
 
Response Example
[
  {
    "avgPrice": "0.00000",
    "clientOrderId": "abc",
    "cumQuote": "0",
    "executedQty": "0",
    "orderId": 1917641,
    "origQty": "0.40",
    "origType": "LIMIT",
    "price": "0",
    "reduceOnly": false,
    "side": "BUY",
    "positionSide": "SHORT",
    "status": "NEW",
    "symbol": "BTCUSDT",
    "time": 1579276756075,              // order time
    "timeInForce": "GTC",
    "type": "LIMIT",
    "updateTime": 1579276756075,       // update time 
    "selfTradePreventionMode": "NONE", //self trading preventation mode
    "goodTillDate": 0,
    "priceMatch": "NONE"  
  }
]