updateTask
Modify task details, including description, category, priority, and status, using the unique task ID. Streamlines task management within the Task API Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | New task category (if you want to change it) | |
priority | No | New task priority (if you want to change it) | |
status | No | New task status (if you want to change it) | |
task | No | New task description/title (if you want to change it) | |
taskId | Yes | The unique ID of the task to update |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"category": {
"description": "New task category (if you want to change it)",
"type": "string"
},
"priority": {
"description": "New task priority (if you want to change it)",
"enum": [
"low",
"medium",
"high"
],
"type": "string"
},
"status": {
"description": "New task status (if you want to change it)",
"enum": [
"not_started",
"started",
"done"
],
"type": "string"
},
"task": {
"description": "New task description/title (if you want to change it)",
"type": "string"
},
"taskId": {
"description": "The unique ID of the task to update",
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"taskId"
],
"type": "object"
}