unassign_epic_from_user
Remove user assignment from a specific epic in Taiga by setting the assigned user to null, ensuring epics are managed accurately within the project management platform.
Instructions
Unassigns a specific epic (sets assigned user to null).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
epic_id | Yes | ||
session_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"epic_id": {
"title": "Epic Id",
"type": "integer"
},
"session_id": {
"title": "Session Id",
"type": "string"
}
},
"required": [
"session_id",
"epic_id"
],
"title": "unassign_epic_from_userArguments",
"type": "object"
}