Delete a task item by ID
DELETE/task/:id
Deletes a specific task item by its ID.
Request
Path Parameters
id uint64required
Responses
- 204
- 404
- 500
Task item deleted successfully. No content returned.
Task item not found.
- application/json
- Schema
- Example (from schema)
Schema
error stringrequired
A description of the error that occurred.
details string
Additional details about the error, specifying which component failed.
code integerrequired
The error code.
{
"error": "Failed to retrieve system status.",
"details": "Failed to get hostname due to network timeout.",
"code": 500
}
Error deleting task item.
- application/json
- Schema
- Example (from schema)
Schema
error stringrequired
A description of the error that occurred.
details string
Additional details about the error, specifying which component failed.
code integerrequired
The error code.
{
"error": "Failed to retrieve system status.",
"details": "Failed to get hostname due to network timeout.",
"code": 500
}
Loading...