deleteTask
Remove a specific task by its unique ID using the Task API Server, ensuring efficient task management for CLI, AI, or browser-based applications.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
taskId | Yes | The unique ID of the task to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"taskId": {
"description": "The unique ID of the task to delete",
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"taskId"
],
"type": "object"
}