get_team_details
Retrieve detailed information for a specific team using its unique identifier within the Webex MCP Server, enabling access to team descriptions and essential data.
Instructions
Get details for a team by ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | The team's description. | |
teamId | Yes | The unique identifier for the team. |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "The team's description.",
"type": "string"
},
"teamId": {
"description": "The unique identifier for the team.",
"type": "string"
}
},
"required": [
"teamId"
],
"type": "object"
}