action zoom_get_zrlocation_structure {
label: "Get Zoom Room location structure"
description: "Get the [location hierarchial structure(s)](https://support.zoom.us/hc/en-us/articles/115000342983-Zoom-Rooms-Location-Hierarchy) applied on the Zoom Rooms in an account.
\n**Prerequisites:**
\n* Zoom Rooms version 4.0 or higher\n* Account owner or admin permissions
\n**Scopes:** `room:read:admin`
\n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Light`"
provider: zoom
method: GET
path: "/rooms/locations/structure"
encoding: json
output: {
type: "object"
properties: {
structures: {
type: "array"
description: "Hierarchial structure array of the Zoom Rooms location."
items: {
type: "string"
}
}
}
}
}