update_team
Modify team details in Webex by updating its name and description using the team's unique identifier for accurate and consistent team management.
Instructions
Update a team in Webex.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | The new description for the team. | |
name | Yes | The new name for the team. | |
teamId | Yes | The unique identifier for the team. |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "The new description for the team.",
"type": "string"
},
"name": {
"description": "The new name for the team.",
"type": "string"
},
"teamId": {
"description": "The unique identifier for the team.",
"type": "string"
}
},
"required": [
"teamId",
"name",
"description"
],
"type": "object"
}