Skip to main content
GET
/
cloud-gateway
/
v1
/
persons
/
{personId}
/
time-bookings
cURL
curl --request GET \
  --url http://localhost:8080/cloud-gateway/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:56",
          "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 - */*

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.