action zoom_get_user_level_channel {
label: "Get a channel"
description: "Zoom chat [channels](https://support.zoom.us/hc/en-us/articles/200912909-Getting-Started-With-Channels-Group-Messaging-) allow users to communicate via chat in private or public groups. Use this API to get information about a specific channel. \n\n**Scope:** `chat_channel:read`
\n**[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Medium`\n\n
Note: This API only supports user-managed OAuth app.
\n\n\n "
provider: zoom
method: GET
path: "/chat/channels/{channelId}"
encoding: json
input: {
type: "object"
properties: {
channelId: {
type: "string"
}
}
required: ["channelId"]
additionalProperties: false
}
output: {
type: "object"
description: "The channel object represents a Zoom chat [channel](https://support.zoom.us/hc/en-us/articles/200912909-Getting-Started-With-Channels-Group-Messaging-). "
properties: {
id: {
type: "string"
description: "Channel Id."
}
name: {
type: "string"
description: "Name of the channel."
}
type: {
type: "integer"
description: "Type of the channel. The value can be one of the following:
\n`1`: Private channel. In this type of channel, members must be invited to join a channel.
\n`2`: Private channel with members that belong to one Zoom account. Members in this channel should be invited and the members should be from the same organization.
\n`3`: Public channel. Anyone can search for this channel and join the channel.
"
enum: [1, 2, 3]
}
}
}
}