create_team
Create a new team in Webex by specifying a name and description, enabling organized collaboration and communication within the platform.
Instructions
Create a team in Webex.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | A description of the team. | |
name | Yes | The name of the team. |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "A description of the team.",
"type": "string"
},
"name": {
"description": "The name of the team.",
"type": "string"
}
},
"required": [
"name",
"description"
],
"type": "object"
}