Points Collection

Will list all points.

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

GetPoints

Columns

Refer to the following table for description of columns:

NameData typeUnit of measurementNullabilityNote
idStringN/AFALSEUnique identifier
nameStringN/AFALSE
noteStringN/ATRUE
iconStringN/ATRUE
locationLocationN/AFALSE
addressAddressN/ATRUE

Request (example)

{}

Response

{
  "list": [
    {
      "id": "71066",
      "name": "Company headquarters",
      "icon": "16x16/about.png",
      "location": {
        "latitude": 53.549717,
        "longitude": 10.037856
      },
      "address": {
        "country": "DE",
        "zipCode": "D-20359",
        "city": "Hamburg",
        "streetAddress": "Hohenzollernring 566"
      }
    },
    {
      "id": " 71067",
      "name": "Region West",
      "note": "Company headquarters",
      "icon": "16x16/about.png",
      "location": {
        "latitude": 51.20118,
        "longitude": 6.777766
      },
      "address": {
        "country": "DE",
        "zipCode": "40237",
        "city": "Düsseldorf",
        "streetAddress": "Sohnstr. 159"
      }
    }
  ]
}