unassign_issue_from_user
Remove user assignment from a specific issue in Taiga project management by setting the assigned user to null. Requires session ID and issue ID for operation.
Instructions
Unassigns a specific issue (sets assigned user to null).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issue_id | Yes | ||
session_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"issue_id": {
"title": "Issue Id",
"type": "integer"
},
"session_id": {
"title": "Session Id",
"type": "string"
}
},
"required": [
"session_id",
"issue_id"
],
"title": "unassign_issue_from_userArguments",
"type": "object"
}