curl --location --request POST 'https://api.personio.de/v1/company/attendances' \
--header 'Content-Type: application/json' \
--data-raw '{
"attendances": [
{
"break": 120,
"comment": {
"$ref": "#/components/schemas/UpdateAttendancePeriodRequest/example/comment"
},
"date": "2017-01-18T00:00:00.000Z",
"employee": 1234,
"end_time": 1080,
"start_time": "08:00"
},
{
"break": 35,
"comment": "I was productive as hell",
"date": "2017-01-17T00:00:00.000Z",
"employee": 1235,
"end_time": 720,
"start_time": "09:00"
}
]
}'