For the complete documentation index, see llms.txt. This page is also available as Markdown.

Contact

Deprecated. The account's trackers grouped by the contacts that share them.

Contacts grouped an account's trackers by the people sharing them. The operation still answers, and is documented here because it is still reachable, but nothing new should be built on it.

API actions


List contacts and their shared trackers (deprecated)

post
/contact/list

Deprecated. Do not use. Get the account's trackers grouped by the contacts that share them.

The path is /contact/list, not /tracker/contact/list. It is registered at the top level, and the tracker-prefixed form returns error 111, "Wrong handler". Available to demo accounts.

Authorizations
AuthorizationstringRequired

Either a user session hash or an API key, with the "NVX " prefix, for example "NVX 22eac1c27af4be7b9d04da2ce1af111b". Obtain a session hash from the userAuth operation, or create an API key from the API keys operations. A small number of operations accept a session hash only and reject an API key with error code 4; each says so in its description.

Body
objectOptional
Responses
200

Contacts and trackers

application/json
successbooleanRead-onlyOptional

true if request finished successfully.

Example: true
post/contact/list
POST /v2/contact/list HTTP/1.1
Host: api.eu.navixy.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 2

{}
{
  "success": true,
  "contacts": [
    {
      "user_id": 12059,
      "first_name": "text",
      "middle_name": "text",
      "last_name": "text",
      "trackers": [
        {
          "id": 123456,
          "label": "tracker label",
          "clone": true,
          "group_id": 167,
          "avatar_file_name": "text",
          "source": {
            "id": 234567,
            "device_id": "9999999988888",
            "model": "telfmb920",
            "blocked": true,
            "tariff_id": 345678,
            "status_listing_id": null,
            "creation_date": "2011-09-21",
            "tariff_end_date": null,
            "phone": null
          },
          "tag_bindings": [
            {
              "tag_id": 456789,
              "ordinal": 4
            }
          ]
        }
      ]
    }
  ],
  "trackers": [
    {
      "id": 123456,
      "label": "tracker label",
      "clone": true,
      "group_id": 167,
      "avatar_file_name": "text",
      "source": {
        "id": 234567,
        "device_id": "9999999988888",
        "model": "telfmb920",
        "blocked": true,
        "tariff_id": 345678,
        "status_listing_id": null,
        "creation_date": "2011-09-21",
        "tariff_end_date": null,
        "phone": null
      },
      "tag_bindings": [
        {
          "tag_id": 456789,
          "ordinal": 4
        }
      ]
    }
  ]
}

Errors

These errors come in addition to the general error codes:

  • 201 - Not found in the database.

Last updated

Was this helpful?