Get group reservation
Returns a single group reservation by ID.
/api/3/group_reservations/{id}
Authentication
This endpoint requires authentication:
Use an OAuth 2.0 access token in the Authorization header. This is the recommended authentication method for all integrations. OAuth provides automatic token expiration, granular permission scopes, detailed usage tracking, and per-integration revocation. Learn how to obtain an access token.
Header Format:
Authorization: Bearer YOUR_ACCESS_TOKEN
Required Scopes:
account.person.readonly
Parameters
Path Parameters
id
integer
Group reservation ID
Responses
Group reservation retrieved successfully
Response Fields
id
integer
required
Unique identifier for the group reservation
eg. 456
person_id
integer
required
ID of the person assigned to the groups
eg. 12345
start_time
string
required
Start time of the group reservation
eg. 2024-01-15T09:00:00.000Z
end_time
string
required
End time of the group reservation (must be after start time and in the future)
eg. 2024-01-15T17:00:00.000Z
state
string
required
Current state of the reservation (pending = not started, active = in progress, deactivated = cancelled or completed)
eg. active
group_ids
array<integer>
required
Array of group IDs the person is assigned to during this reservation
eg. [1, 3, 5]
created_at
string
required
Timestamp of creation
updated_at
string
required
Timestamp of last update
Unauthorized - Invalid or missing authentication
Response Fields
error
string
eg. unauthorized
error_description
string
eg. The access token is invalid
Forbidden - User does not have permission
Response Fields
error
string
eg. forbidden
error_description
string
eg. You are not authorized to access this resource
Not Found - Resource does not exist or is not an admission request event
Response Fields
error
string
eg. not_found
error_description
string
eg. The requested resource was not found
Internal Server Error
Response Fields
error
string
eg. internal_server_error
error_description
string
eg. An unexpected error occurred