get_issue_types
Retrieve a list of issue types for a specific project using the project ID or key to organize and manage tasks effectively within Backlog.
Instructions
Returns list of issue types for a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectIdOrKey | Yes | Project ID or project key |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"projectIdOrKey": {
"description": "Project ID or project key",
"type": [
"string",
"number"
]
}
},
"required": [
"projectIdOrKey"
],
"type": "object"
}