Driver time table report API is returning the driver working times from DDD (Tachograph) file for a 1 month periods with Night, Day and total working time.
- 1000 req/min
Maximum period is 3 months in to the past
- Works only for TACHOGRAPH Data
GET /drivertimetable/{type}-{identifier}?api_key=<..>&time_range_year=<..>&timezone=<..>&time_range_month=<..>&business_hours_start=<..>&business_hours_end=<..>&status_available_as_working_time=<..>&version=<..>
Host: api.fm-track.com
Content-Type: application/json;charset=UTF-8
| Parameter | Type | Description | Is required | Remarks |
1 | identifier | string | Driver card number | + | |
2 | type | string | type of identification | + | Now only "TACHOGRAPH" is supported |
3 | timezone | string | time zone | + | example for format: "timezone=GMT", "timezone=Vilnius" etc. |
4 | time_range_month | integer | time range set by months | + | example for format: "time_range_month=8" |
5 | time_range_year | integer | time range year by year | + | Example for format: "time_range_year=2022" |
6 | business_hours_start | string | business hours start at time | + | Example for format: "business_hours_start=07:00" |
7 | business_hours_end | string | business hours end at time | + | Example for format: "business_hours_end=18:00" |
8 | status_available_as_working_time | boolean | status available as working time TRUE/FALSE | + | Include status available as working time for the working hours calculation |
9 | version | string | version of API | + | At this moment we have only version=1 |
10 | api_key | string | User identification key | + | |
{
"days": [
{
"date": "2023-05-15T13:56:15.275Z",
"holiday": true,
"work_duration_at_day": 0,
"work_duration_at_night": 0
}
],
"driver_name": "string",
"identifier": "string",
"time_card_number": "string",
"total_day_working_hours": 0,
"total_night_working_hours": 0,
"total_working_hours": 0
}
Name | Type | Description |
identifier | string | Driver card number |
driver_name | string | Driver name and surname |
time_card_number | string | Time card number |
total_day_working_hours | number | Summary of working time during day hours. Units: seconds. |
total_night_working_hours | number | Summary of working time during night hours. Units: seconds. |
total_working_hours | number | Summary of working time. Units: seconds. |
days | array | Array of days |
date | datetime | Day date, format "2022-07-03T00:00:00.000" |
holiday | boolean | "True" if day is holiday, "false" if not. |
work_duration_at_day | number | Working time for the day during day hours. Units: seconds. |
work_duration_at_night | number | Working time for the day during night hours. Units: seconds. |