Skip to main content
GET
/
api
/
v1
/
persons
/
{personId}
/
time-bookings
cURL
curl --request GET \
  --url https://api.example.com/api/v1/persons/{personId}/time-bookings
{
  "personId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "days": [
    {
      "date": "<string>",
      "targetTime": 123,
      "bookedTime": 123,
      "chargeableTime": 123,
      "bookings": [
        {
          "time": "2023-11-07T05:31:56Z",
          "key": "<string>"
        }
      ]
    }
  ]
}

Path Parameters

personId
string
required

Query Parameters

from
string<date>
required
Example:

"2025-01-01"

to
string<date>
Example:

"2025-01-31"

Response

200 - application/json

OK

personId
string<uuid>
days
CalendarDay · object[]

Time Bookings grouped by day (Formerly timeAccountDays)

Time bookings have their own unit, but the daily totals are always in hours and minutes. The decimal part corresponds to minutes. For example, 90 minutes is displayed as 1.30.