unassign_task_from_user
Remove user assignments from specific tasks in the Taiga project management platform. Facilitates task management by clearing assigned users when needed.
Instructions
Unassigns a specific task (sets assigned user to null).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
session_id | Yes | ||
task_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"session_id": {
"title": "Session Id",
"type": "string"
},
"task_id": {
"title": "Task Id",
"type": "integer"
}
},
"required": [
"session_id",
"task_id"
],
"title": "unassign_task_from_userArguments",
"type": "object"
}