delete-state
Remove a specific state from a project in Plane.so to clean up workflow stages or eliminate outdated project statuses.
Instructions
Delete a state from a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | ID of the project containing the state | |
| state_id | Yes | ID of the state to delete |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "ID of the project containing the state",
"type": "string"
},
"state_id": {
"description": "ID of the state to delete",
"type": "string"
}
},
"required": [
"project_id",
"state_id"
],
"type": "object"
}