get-state
Retrieve detailed information about a specific state within a Plane project using project and state identifiers to access state data and properties.
Instructions
Get detailed information about a specific state
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | ID of the project containing the state | |
| state_id | Yes | ID of the state to retrieve |
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 retrieve",
"type": "string"
}
},
"required": [
"project_id",
"state_id"
],
"type": "object"
}