# Equipment

## Equipment object

```json
{
  "equip_id": 33,
  "model_name": "SPT10 SB",
  "model_code": "pt10",
  "vendor": "3. NAVIXY S Series (personal)",
  "name": "NAVIXY S10"
}
```

* `equip_id` - int. Equipment ID.
* `model_name` - string. A model's original name.
* `model_code` - string. A model code which should be inserted to tracker bundles.
* `vendor` - string. A vendor's name.
* `name` - string. A model's name used by a vendor.

## API actions

API path: `panel/equipment`.

### list

Returns list of all equipment which can be assigned to tracker bundles.

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

#### Parameters

Only session `hash`.

#### Examples

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

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

{% endtab %}

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

```http
https://api.eu.navixy.com/v2/panel/equipment/list?hash=fa7bf873fab9333144e171372a321b06
```

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

#### Response

```json
{
  "success": true,
  "list": [
    {
      "equip_id": 33,
      "model_name": "SPT10 SB",
      "model_code": "pt10",
      "vendor": "3. NAVIXY S Series (personal)",
      "name": "NAVIXY S10"
    }
  ]
}
```

#### Errors

[General](https://github.com/SquareGPS/navixy-api/blob/master/docs/user-api/backend-api/getting-started/errors.md#error-codes) types only.


---

# 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/equipment.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.
