v1

OpenAPI 3.0.0Proprietary2026-08-06130577659.7 KB
Tracking|Event

Fetch event list.

This method allows the events to be requested with additional filters. It is important to know that Stamp Events do not contain a time stamp object used for time tracking. It is only the event of a triggered time recording module on a vehicle or a triggered time recording terminal. If you want to use time stamp data, consider using the Employee Stamp endpoint. For timestamp data, it is advised to use the Time Tracking|Employee Stamp endpoint. If you need to request an employee's work time, it is recommended to use the Time Tracking|Employee time tracking endpoint. Other events include the ignition, device movement, or stopping tracker.

get/event/fetch

Query parameters

eventTypes[]string[]

Filter for event type. This paramter is optional.

ValueDescription
MOVEMove
STOPStop
STAMPStamp
IGNITIONIgnition
SENSORSensor
sensorValueTypeNamestring

Filter for sensor value type name. This paramter is optional.

trackers[byIds][]integer[]

Filters the vehicles based on the IDs.

trackers[byLicenseNumbers][]string[]

Filters the vehicles based on the license plates.

trackers[byIdentifiers][]string[]

Filters the vehicles based on the customer-specific IDs.

trackers[byIdentificationNumbers][]string[]

Filters the vehicles based on the VINs.

trackers[byImportKeys][]string[]

Filters the vehicles based on the external vehicle IDs.

trackers[importSource]string

Name of the external data source. (Default is "*API")

This parameter is only required if the external vehicle ID is filtered.

trackers[byName]string

Filter the vehicles on their name.

trackers[byDriver]string

Filter the vehicles on their driver.

trackers[byEmployees][byIds][]integer[]

Filters the employee based on the IDs.

trackers[byEmployees][byReferences][]string[]

Filters the employees based on the personal numbers.

trackers[byEmployees][byCardNumbers][]string[]

Filters the employees based on the driver card numbers.

trackers[byEmployees][byIbuttonNumbers][]integer[]

Filters the employees based on the iButton numbers.

trackers[byEmployees][byImportKeys][]string[]

Filters the employees based on the employee import IDs.

trackers[byEmployees][importSource]string

Name of the external data source. (Default is "*API")

This parameter is only required if the external employee ID is filtered.

employees[byIds][]integer[]

Filters the employee based on the IDs.

employees[byReferences][]string[]

Filters the employees based on the personal numbers.

employees[byCardNumbers][]string[]

Filters the employees based on the driver card numbers.

employees[byIbuttonNumbers][]integer[]

Filters the employees based on the iButton numbers.

employees[byImportKeys][]string[]

Filters the employees based on the employee import IDs.

employees[importSource]string

Name of the external data source. (Default is "*API")

This parameter is only required if the external employee ID is filtered.

offsetinteger

Number of events to be skipped. This paramter is optional.

limitinteger

The limit parameter defines the maximum number of records that can be retrieved in a single API request, with a max and default value set at 500 records.

datestring
Example:2022-12-22

Filter for events on this day.

Response

Success Response:

totalCountinteger

Total number of events. (Only calculated if offset is 0)

Example response

{
  "trackers": [
    {
      "events": [
        {
          "startTime": "2015-02-20T12:59:21+01:00",
          "startLatLng": [
            52.38127828631681,
            7.594243214018696
          ],
          "endTime": "2015-02-20T12:59:21+01:00",
          "endLatLng": [
            52.38127828631681,
            7.594243214018696
          ]
        }
      ]
    }
  ],
  "projects": [
    {
      "latLng": [
        52.38127828631681,
        7.594243214018696
      ]
    }
  ]
}