unassign_user_story_from_user
Remove user assignment from a specific user story in Taiga by setting the assigned user to null, simplifying task management and reallocation.
Instructions
Unassigns a specific user story (sets assigned user to null).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
session_id | Yes | ||
user_story_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"session_id": {
"title": "Session Id",
"type": "string"
},
"user_story_id": {
"title": "User Story Id",
"type": "integer"
}
},
"required": [
"session_id",
"user_story_id"
],
"title": "unassign_user_story_from_userArguments",
"type": "object"
}