action zoom_get_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:admin`
\n**[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Medium`
\n\n

Note: For an account-level OAuth app, this API can only be used on behalf of a user who is assigned with a role that has View or Edit permission for Chat Channels.

\n\n\n " provider: zoom method: GET path: "/chat/users/{userId}/channels/{channelId}" encoding: json input: { type: "object" properties: { channelId: { type: "string" } userId: { type: "string" } } required: ["channelId", "userId"] 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] } } } }