delete-intake-issue
Remove an intake issue from a Plane project by providing the project ID and issue ID to clean up project management workflows.
Instructions
Delete an intake issue
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issue_id | Yes | ID of the intake issue to delete | |
| project_id | Yes | ID of the project containing the intake issue |
Input Schema (JSON Schema)
{
"properties": {
"issue_id": {
"description": "ID of the intake issue to delete",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the intake issue",
"type": "string"
}
},
"required": [
"project_id",
"issue_id"
],
"type": "object"
}