get_channel
Retrieve specific channel details within Zoom by providing the channel ID, enabling streamlined management of Zoom resources through structured API interaction.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel_id | Yes | The channel ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"channel_id": {
"description": "The channel ID",
"type": "string"
}
},
"required": [
"channel_id"
],
"type": "object"
}