delete-issue-type
Remove an issue type from a Plane project by specifying the project ID and issue type ID to clean up project management workflows.
Instructions
Delete an issue type from a project
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 delete |
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 delete",
"type": "string"
}
},
"required": [
"project_id",
"type_id"
],
"type": "object"
}