Contacts Collection

Will list all contacts.

URL Structure is:
https://api.trackunit.com/public/Contact

GetContacts

Columns

NameData typeUnit of measurementNullabilityNote
idStringN/AFALSEUnique identifier.
clientIdStringN/AFALSEUnique identifier of client.
nameStringN/AFALSEName of contact.
emailStringN/ATRUEContact email.
phoneStringN/ATRUEContact phone number.
mobileStringN/ATRUEContact mobile number.

Request (example)

{}

Response

{
  "list": [
    {
      "id": "35717",
      "clientId": "38171",
      "name": "Eric Westermann",
      "email": "[email protected]",
      "phone": "490011223344",
      "mobile": "499988776655"
    },
    {
      "id": "35718",
      "clientId": "38171",
      "name": "Anna Milowich",
      "email": "[email protected]",
      "phone": "472222339901",
      "mobile": "472232336909"
    }
  ]
}