list_zoom_room_locations
Retrieve Zoom Room locations by specifying page size, number, and parent location ID to efficiently manage and organize Zoom resources.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page_number | No | Page number | |
page_size | No | Number of records returned | |
parent_location_id | No | Parent location ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page_number": {
"description": "Page number",
"minimum": 1,
"type": "number"
},
"page_size": {
"description": "Number of records returned",
"maximum": 300,
"minimum": 1,
"type": "number"
},
"parent_location_id": {
"description": "Parent location ID",
"type": "string"
}
},
"type": "object"
}