create_issue
Enables users to create a new issue in a Taiga project by specifying session details, project ID, subject, priority, status, severity, and type. Simplifies issue tracking and management.
Instructions
Creates a new issue within a project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
kwargs | Yes | ||
priority_id | Yes | ||
project_id | Yes | ||
session_id | Yes | ||
severity_id | Yes | ||
status_id | Yes | ||
subject | Yes | ||
type_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"kwargs": {
"title": "kwargs",
"type": "string"
},
"priority_id": {
"title": "Priority Id",
"type": "integer"
},
"project_id": {
"title": "Project Id",
"type": "integer"
},
"session_id": {
"title": "Session Id",
"type": "string"
},
"severity_id": {
"title": "Severity Id",
"type": "integer"
},
"status_id": {
"title": "Status Id",
"type": "integer"
},
"subject": {
"title": "Subject",
"type": "string"
},
"type_id": {
"title": "Type Id",
"type": "integer"
}
},
"required": [
"session_id",
"project_id",
"subject",
"priority_id",
"status_id",
"severity_id",
"type_id",
"kwargs"
],
"title": "create_issueArguments",
"type": "object"
}