improved

Attendance API: added "updated_at" attribute and enabled filtering by "updated_at"

Synchronising attendance periods with Personio just became a whole lot easier!

  • We just added the attributes "updated_at", which indicates when a specific attendance period has been updated the last time.
  • You're now also able to filter the results by the "updated_at" attribute using the two parameters "updated_from" and "updated_to" (both inclusive).

Find more information in the API reference.

{
    “success”: true,
    “metadata”: {
        “total_elements”: 1,
        “current_page”: 0,
        “total_pages”: 1
    },
    “data”: [
        {
            “id”: 25000008,
            “type”: “AttendancePeriod”,
            “attributes”: {
                “employee”: 1,
                “date”: “2020-12-21”,
                “start_time”: “13:30”,
                “end_time”: “16:10”,
                “break”: 0,
                “comment”: “Postman 2",
                “updated_at”: “2021-02-17T16:56:53+00:00",
                “is_holiday”: false,
                “is_on_time_off”: false
            }
        }
    ],
    “offset”: 0,
    “limit”: 200
}