create_team
Create a new team for a specific user in the Multilead platform by providing user ID and team name to organize lead management workflows.
Instructions
Create a new team for a specific user
Args: user_id: The user ID who will own the team (required) name: The name of the team to create (required)
Returns: Created team object with ID and metadata
Example: create_team(user_id="1451", name="Sales Team")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"type": "string"
},
"user_id": {
"type": "string"
}
},
"required": [
"user_id",
"name"
],
"type": "object"
}