> 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/user-api/resources/tracking/tracker/contact.md).

# Contact

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

{% hint style="warning" %}
**Deprecated.** This action should not be used.
{% endhint %}

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

{% hint style="danger" %}
The path is `/contact/list`, at the top level, **not** `/tracker/contact/list`. This page previously documented the tracker-prefixed form, which returns error 111, "Wrong handler".
{% endhint %}

***

## List contacts and their shared trackers (deprecated)

> \*\*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.

```json
{"openapi":"3.1.0","info":{"title":"Navixy Platform API","version":"1.0.0"},"tags":[{"name":"Trackers","description":"Trackers, the devices the platform tracks, together with the geo links that share their live location with people outside the account. Resources under the /tracker/ path."}],"servers":[{"url":"https://api.eu.navixy.com/v2","description":"Navixy production server on European platform"},{"url":"https://api.us.navixy.com/v2","description":"Navixy production server on American platform"},{"url":"https://api.me.navixy.com/v2","description":"Navixy production server on Middle East platform"}],"security":[{"api_key":[]}],"components":{"securitySchemes":{"api_key":{"type":"apiKey","description":"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.","name":"Authorization","in":"header"}},"schemas":{"Contact":{"type":"object","description":"Another user who shares tracker locations with this account.","properties":{"user_id":{"type":"integer","description":"ID of the user the contact is established with."},"first_name":{"type":"string","description":"First name."},"middle_name":{"type":"string","description":"Middle name."},"last_name":{"type":"string","description":"Last name."},"trackers":{"type":"array","description":"The contact's trackers whose locations are shared with this account.","items":{"$ref":"#/components/schemas/Tracker"}}}},"Tracker":{"type":"object","description":"A tracking device registered in the platform. One of the central objects of this API.","properties":{"id":{"type":"integer","description":"Tracker ID, also known as the object ID."},"label":{"type":"string","description":"Tracker label."},"clone":{"type":"boolean","description":"`true` when this tracker is a clone of another."},"group_id":{"type":"integer","description":"Tracker group ID, `0` when the tracker is in no group."},"avatar_file_name":{"type":"string","description":"Avatar file name. Present only when the tracker has one."},"source":{"$ref":"#/components/schemas/TrackerSource"},"tag_bindings":{"type":"array","description":"Tags attached to the tracker. Returned by `tracker/list`, and by the registration and replacement calls.","items":{"$ref":"#/components/schemas/TagBinding"}}}},"TrackerSource":{"type":"object","description":"The physical device behind a tracker.","properties":{"id":{"type":"integer","description":"Source ID."},"device_id":{"type":"string","description":"Device ID, also called the source IMEI. Its accepted shape depends on the model's `id_type`."},"model":{"type":"string","description":"Model code, as returned by `tracker/list_models`."},"blocked":{"type":"boolean","description":"`true` when the tracker is blocked because its tariff ended."},"tariff_id":{"type":"integer","description":"ID of the tracker's tariff."},"status_listing_id":{"type":["integer","null"],"description":"ID of the working status list assigned to this tracker, or null."},"creation_date":{"type":"string","description":"Date the tracker was registered, `YYYY-MM-DD`."},"tariff_end_date":{"type":["string","null"],"description":"Date of the next tariff prolongation, `YYYY-MM-DD`, or null."},"phone":{"type":["string","null"],"description":"Phone number of the device. Null or empty when the device has no GSM module, or uses a bundled SIM whose number is hidden from the user."}}},"TagBinding":{"type":"object","description":"A tag attached to a tracker.","properties":{"tag_id":{"type":"integer","description":"ID of the tag. Unique within a tracker."},"ordinal":{"type":"integer","description":"Position or kind of the tag. Unique within a tracker, maximum 5.","minimum":1,"maximum":5}},"required":["tag_id","ordinal"]}},"responses":{"ResponseError":{"description":"Error response object","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Always false."},"status":{"type":"object","description":"Error status. Present only when an error occurred.","properties":{"code":{"type":"integer","description":"An error code in this API, not an HTTP code."},"description":{"type":"string","description":"An error description."}}},"errors":{"type":"array","description":"Per-parameter detail, returned with validation failures such as error code 7. A parameter name here may be an internal field name rather than the documented parameter name.","items":{"type":"object","properties":{"parameter":{"type":"string","description":"Name of the parameter that failed validation."},"error":{"type":"string","description":"What was wrong with it."}}}}}}}}}}},"paths":{"/contact/list":{"post":{"tags":["Trackers"],"summary":"List contacts and their shared trackers (deprecated)","description":"**Deprecated. Do not use.** Get the account's trackers grouped by the contacts that share them.\n\n**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.","operationId":"contactList","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{}}}}},"responses":{"200":{"description":"Contacts and trackers","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"`true` if request finished successfully.","readOnly":true},"contacts":{"type":"array","description":"Established contacts, each with the trackers they share.","items":{"$ref":"#/components/schemas/Contact"}},"trackers":{"type":"array","description":"Trackers belonging to the current account.","items":{"$ref":"#/components/schemas/Tracker"}}}}}}},"400":{"description":"Bad request. The response body carries the API-level error code in `status.code`. Validation failures also include an `errors` array naming each offending parameter.","$ref":"#/components/responses/ResponseError"},"403":{"description":"Error 201: not found in the database.","$ref":"#/components/responses/ResponseError"},"default":{"$ref":"#/components/responses/ResponseError"}}}}}}
```

#### Errors

These errors come in addition to the [general error codes](/docs/navixy-api/general/errors.md#error-codes):

* 201 - Not found in the database.


---

# 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/user-api/resources/tracking/tracker/contact.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.
