> For the complete documentation index, see [llms.txt](https://faq.finerymarkets.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://faq.finerymarkets.com/api-reference/rest-api/trading/orders-and-order-book/pending-limit-orders/deprecated-orders-authorized.md).

# \[DEPRECATED] orders (authorized)

{% hint style="warning" %}
This is a deprecated API. Please, migrate to use of [/algo/authorized/orders](https://app.gitbook.com/o/-MdGV_UNcoyY7eJyul_c/s/lhEtVTUclDpcNfjGvCeB/~/edit/~/changes/439/api-reference/rest-api/trading/order-book-and-qs/algo-orders/authorized-operations/algo-authorized-orders)
{% endhint %}

**POST pending/authorized/orders**

{% tabs %}
{% tab title="Payload" %}

```json
{
    "clientId": "int",
    "pageSize": "int",
    "pageNumber": "int",
    "from": "int (timestamp)",
    "to": "int (timestamp)",
    "instruments": ["string"],
    "statuses": ["string"],
    "side": "string" // "bid" or "ask" (case-insensitive)
}
```

{% endtab %}

{% tab title="200 OK" %}

```json
{
    "id": "int",
    "clientId": "int",
    "instrument": "string",
    "status": "string",
    "createdAt": "int (timestamp)",
    "size": "int (optional)",
    "volume": "int (optional)",
    "remainingVolumeOrSize": "int"
}
```

{% endtab %}

{% tab title="400 Bad request" %}

```json
{
    "error": "int"
}
```

{% endtab %}
{% endtabs %}

**Response description**

• **Statuses:** PENDING, COMPLETED, or CANCELED
