assign_task
Use this tool to assign multiple users to a specific task in ClickUp. Input the task ID and user IDs to streamline task management and team collaboration.
Instructions
Assign users to a task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
task_id | Yes | Task ID | |
user_ids | Yes | User IDs to assign |
Input Schema (JSON Schema)
{
"properties": {
"task_id": {
"description": "Task ID",
"type": "string"
},
"user_ids": {
"description": "User IDs to assign",
"items": {
"type": "integer"
},
"type": "array"
}
},
"required": [
"task_id",
"user_ids"
],
"type": "object"
}