linear_getWorkflowStates
Retrieve workflow states for a specific team in Linear, with options to include archived states, aiding in project management and task tracking.
Instructions
Get workflow states for a team
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeArchived | No | Whether to include archived states (default: false) | |
teamId | Yes | ID of the team to get workflow states for |
Input Schema (JSON Schema)
{
"properties": {
"includeArchived": {
"description": "Whether to include archived states (default: false)",
"type": "boolean"
},
"teamId": {
"description": "ID of the team to get workflow states for",
"type": "string"
}
},
"required": [
"teamId"
],
"type": "object"
}