v1

latestOpenAPI 3.0.0Proprietary2026-08-06130577659.7 KB
Projects|Project time

Fetch project time list.

This method can be used to request the operating hours and working hours for a project.

In geoCapture, project times record the working hours and activities linked with specific projects. The records contain information such as the start and end times of activities, their duration, and the employees or equipment (trackers) that were utilized. This functionality assures precise tracking of labour and resource utilization on projects, facilitating efficient management and billing. All times are in seconds.

get/project_times/fetch

Query parameters

projectReferencestring

The project number. Either this parameter or projectImportKey is required.

projectImportKeystring

The project import key. Either this parameter or projectReference is required.

fromstring required
Example:2022-12-22

Start date.

tostring required
Example:2022-12-22

End date.

Response

Success Response:

Example response

{
  "employeeWorkActivities": [
    {
      "startTime": "2015-02-20T12:59:21+01:00",
      "endTime": "2015-02-20T12:59:21+01:00"
    }
  ],
  "trackerWorkActivities": [
    {
      "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
      ]
    }
  ],
  "trackerVisitActivities": [
    {
      "startTime": "2015-02-20T12:59:21+01:00",
      "endTime": "2015-02-20T12:59:21+01:00"
    }
  ],
  "accountingEntries": [
    {
      "date": "2015-02-20"
    }
  ]
}