assign_task_to_user
Assign a specific task to a designated user in Taiga project management. Simplify task delegation with structured inputs for session, task, and user IDs.
Instructions
Assigns a specific task to a specific user.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
session_id | Yes | ||
task_id | Yes | ||
user_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"session_id": {
"title": "Session Id",
"type": "string"
},
"task_id": {
"title": "Task Id",
"type": "integer"
},
"user_id": {
"title": "User Id",
"type": "integer"
}
},
"required": [
"session_id",
"task_id",
"user_id"
],
"title": "assign_task_to_userArguments",
"type": "object"
}