assign_epic_to_user
Assigns a specific epic to a user in Taiga project management, enabling streamlined task delegation and clear responsibility allocation for project workflows.
Instructions
Assigns a specific epic to a specific user.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
epic_id | Yes | ||
session_id | Yes | ||
user_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"epic_id": {
"title": "Epic Id",
"type": "integer"
},
"session_id": {
"title": "Session Id",
"type": "string"
},
"user_id": {
"title": "User Id",
"type": "integer"
}
},
"required": [
"session_id",
"epic_id",
"user_id"
],
"title": "assign_epic_to_userArguments",
"type": "object"
}