orders
Retrieves details of pending limit orders
POST pending/orders
{
"pageSize": "int",
"pageNumber": "int",
"from": "int (timestamp)",
"to": "int (timestamp)",
"instruments": ["string"],
"statuses": ["string"],
"side": "string" // "bid" or "ask" (case-insensitive)
}{
"id": "int",
"clientId": "int",
"instrument": "string",
"status": "string",
"createdAt": "int (timestamp)",
"size": "int (optional)",
"volume": "int (optional)",
"remainingVolumeOrSize": "int"
}{
"error": "int"
}Response description
• Statuses: PENDING, COMPLETED, or CANCELED
Last updated