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:

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"
  }'

Last updated

Was this helpful?