Task API Server

deleteTask

Input Schema

NameRequiredDescriptionDefault
taskIdYesThe 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" }

You must be authenticated.

Other Tools