Logo
Zoom Public API Documentation

Get a workspace's reservations

GET {{baseUrl}}/workspaces/:workspaceId/reservations?from=<dateTime>&to=<dateTime>&user_id=<string>

Use this API to get a workspace's reservations.

Scopes: workspace:readworkspace:read:admin

Rate Limit Label: Medium

 

Body PARAM

Key Datatype Required Description 
from
string The start date of the query.
to
string The end date of the query. Can be up to 14 days in the future.
user_id
string The ID of the user for whom to create a workspace reservation.



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "from": "<dateTime>", "reservations": [ { "end_time": "<dateTime>", "id": "<string>", "start_time": "<dateTime>", "timezone": "<string>", "topic": "<string>", "user_id": "<string>" }, { "end_time": "<dateTime>", "id": "<string>", "start_time": "<dateTime>", "timezone": "<string>", "topic": "<string>", "user_id": "<string>" } ], "to": "<dateTime>" }



Curl
curl -X GET 'https://api.zoom.us/v2/workspaces/:workspaceId/reservations?from=<dateTime>&to=<dateTime>&user_id=<string>?from=<dateTime>&to=<dateTime>&user_id=<string>' -H 'Accept: application/json'

ENDPOINTS