> For the complete documentation index, see [llms.txt](https://navixy.com/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://navixy.com/docs/navixy-api/panel-api/resources/order.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
