# Order

## API actions

API path: `panel/order`.

### read

Reads order by specified ID.

*required permissions*: `tracker_bundles: "read"`.

#### Parameters

| name      | description | type |
| --------- | ----------- | ---- |
| order\_id | Order ID.   | int  |

#### Examples

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

```sh
curl -X POST 'https://api.eu.navixy.com/v2/panel/order/read' \
    -H 'Content-Type: application/json' \
    -d '{"hash": "fa7bf873fab9333144e171372a321b06", "order_id": 12341}'
```

{% endtab %}

{% tab title="HTTP GET" %}
{% code overflow="wrap" %}

```http
https://api.eu.navixy.com/v2/panel/order/read?hash=fa7bf873fab9333144e171372a321b06&order_id=12341
```

{% endcode %}
{% endtab %}
{% endtabs %}

#### Response

```json
    {
  "success": true,
  "value": {
    "id": 3,
    "user_id": 11346,
    "seller_id": 1,
    "amount": 1,
    "sum": 34300.00,
    "type": "equip",
    "payer": "Leonard Bernstein",
    "recipient": "Leonard Bernstein",
    "contacts": "",
    "place": "111111 Leipzig, Leipzig Tieckstrasse, 2",
    "comment": "",
    "creation_time": "2009-12-10 01:00:36",
    "status": "created",
    "bundles": [
      {
        "id": 2,
        "equip_id": 117,
        "equip_vendor": "Trackers of different manufacturers",
        "equip_name": "GPS/GSM terminal Teltonika FM1100",
        "equip_model": "FM1200",
        "model_code": "gv500",
        "imei": "355085050027285",
        "iccid": "89701010064407635201",
        "assign_time": "2014-12-15 13:42:54",
        "order_id": 3
      }
    ]
  }
}
```

#### Errors

* 201 – Not found in the database - if specified order does not exist.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://navixy.com/docs/navixy-api/panel-api/resources/order.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
