# Bulk upload devices

## Question

How do I activate multiple devices at once?

## Answer

Option 1: contact Support with a CSV/XLSX containing:

* model
* label
* device\_id (IMEI)
* phone (cannot be null)
* apn\_name
* apn\_user
* apn\_password

Option 2: use the API `tracker/register` in a loop. By default, you can use `plugin_id: 44`.

Example request:

```bash
curl -X POST 'https://api.us.navixy.com/v2/tracker/register' \
  -H 'Content-Type: application/json' \
  -d '{
    "hash": "[HASH]",
    "label": "Courier",
    "group_id": 0,
    "plugin_id": 44,
    "model": "qlgv55lite",
    "phone": "79123122312",
    "device_id": "123451234512346",
    "apn_name": "fast.tmobile.com",
    "apn_user": "tmobile",
    "apn_password": "tmobile"
  }'
```

## Links

* [API: tracker/register](/docs/navixy-api/user-api/backend-api/resources/tracking/tracker.md#register)
* [Bulk activation](/docs/admin/devices/bulk-activation.md)
* [Automatic device activation](/docs/user/guide/quick-start/activate-gps-device.md#activate-gps-device-automatically)


---

# 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/qna/admin-panel/bulk-upload-devices.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.
