Skip to main content
GET
Team Bookings

Team Bookings

Returns active bookings for all members of the authenticated customer’s team. Team administrators use this to see and manage their team’s resource usage.

Authentication

Requires a valid customer bearer token. The customer must be a team member or administrator.

Query Parameters

string
Comma-separated list of field paths to include in the response. When provided, only the specified fields are returned — useful for reducing payload size. Supports nested paths using dot notation. Example: _shape=Records.ResourceName,Records.FromTime,Records.ToTime,TotalItems.

Response

Returns a MyBookings object (ApiListResult<Booking>) — a paginated wrapper containing an array of team booking records.
Booking[]
Array of booking objects for the current page.
number
Current page number (1-based).
number
Total number of team bookings.
number
Total number of pages.
boolean
Whether there are more pages after the current one.
boolean
Whether there are pages before the current one.

Examples

Fetch team bookings

TypeScript Integration