action zoom_get_zrlocation_profile {
label: "Get Zoom Room location profile"
description: "Each location type of the [Zoom Rooms location hierarchy](https://support.zoom.us/hc/en-us/articles/115000342983-Zoom-Rooms-Location-Hierarchy) has a profile page that includes information such as name of the location, address, support email, etc. Use this API to retrieve information about a specific Zoom Rooms location type such as information about the city where the Zoom Rooms is located.\n\n**Prerequisite:**
\n* Account owner or admin permission\n* Zoom Rooms version 4.0 or higher
\n**Scopes:** `room:read:admin`
\n \n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Medium`"
provider: zoom
method: GET
path: "/rooms/locations/{locationId}"
encoding: json
input: {
type: "object"
properties: {
locationId: {
type: "string"
}
}
required: ["locationId"]
additionalProperties: false
}
output: {
type: "object"
properties: {
basic: {
type: "object"
properties: {
address: {
type: "string"
description: "Address"
}
"description ": {
type: "string"
description: "Description about the location."
}
name: {
type: "string"
description: "Name of the location type."
}
required_code_to_ext: {
type: "boolean"
description: "Require code to exit out of your Zoom Rooms application to switch between other apps.\n"
}
room_passcode: {
type: "string"
description: "1-16 digit number or characters that is used to secure your Zoom Rooms application."
}
support_email: {
type: "string"
format: "email"
description: "The email address to be used for reporting Zoom Room issues.\n"
}
support_phone: {
type: "string"
description: "The phone number to be used for reporting Zoom Room issues.\n"
}
timezone: {
type: "string"
description: "Timezone (only returned for location type - city)."
}
}
}
}
}
}