get-issue-type
Retrieve detailed information about a specific issue type from a Plane project by providing the project ID and issue type ID.
Instructions
Get detailed information about a specific issue type
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | ID of the project containing the issue type | |
| type_id | Yes | ID of the issue type to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "ID of the project containing the issue type",
"type": "string"
},
"type_id": {
"description": "ID of the issue type to retrieve",
"type": "string"
}
},
"required": [
"project_id",
"type_id"
],
"type": "object"
}