v1

latestOpenAPI 3.0.0Proprietary2026-08-06130577659.7 KB
Time Tracking|Employee Stamp

Fetch employee stamp list.

This function retrieves employee stamps, including the projectId, the salaryType and the position of the stamp. Stamps in geoCapture are utilized for time tracking. The stamp can be set to either S for stay or E for end. Stay stamps can be created at the start of a shift, after a break, if automatic breaks are not enabled in geoCapture, or when beginning work on a new project for project-related time tracking. Leave stamps can be generated at the beginning of a pause or at the conclusion of a shift. For employee work time requests, it is recommended to utilize the employee_time_tracking/fetch endpoint.

get/employee_stamp/fetch

Query parameters

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.

stampIdstring

Internal Id of the stamp. (Ignores other Filters and returns the specific Stamp)

fromstring
Example:2022-12-22

Start date

tostring
Example:2022-12-22

End date

offsetinteger

Number of records to skip.

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.

Response

Success Response:

offsetinteger

Number of skipped records.

totalCountinteger

Total number of available employee stamps. (Calculated only if the offset is 0)

Example response

{
  "data": [
    {
      "time": "2015-02-20T12:59:21+01:00",
      "latLng": [
        52.38127828631681,
        7.594243214018696
      ]
    }
  ]
}