assign_user_story_to_user
Assign a specific user story to a designated user in Taiga project management, streamlining task allocation and enhancing project coordination.
Instructions
Assigns a specific user story to a specific user.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
session_id | Yes | ||
user_id | Yes | ||
user_story_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"session_id": {
"title": "Session Id",
"type": "string"
},
"user_id": {
"title": "User Id",
"type": "integer"
},
"user_story_id": {
"title": "User Story Id",
"type": "integer"
}
},
"required": [
"session_id",
"user_story_id",
"user_id"
],
"title": "assign_user_story_to_userArguments",
"type": "object"
}