listTasks
Filter and retrieve tasks by status or priority using the Task API Server. Manage tasks effectively with clear status and priority-based sorting for improved organization.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
priority | No | Filter tasks by priority level (optional) | |
status | No | Filter tasks by status (optional) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"priority": {
"description": "Filter tasks by priority level (optional)",
"enum": [
"low",
"medium",
"high"
],
"type": "string"
},
"status": {
"description": "Filter tasks by status (optional)",
"enum": [
"not_started",
"started",
"done"
],
"type": "string"
}
},
"type": "object"
}