Delete Task
Delete an existing scheduled task by its id. The response returns only the status of the delete operation.
Endpoint
DELETE https://api.recoupable.com/api/tasksDELETE Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | UUID of the task to delete |
Request Examples
cURL
curl -X DELETE "https://api.recoupable.com/api/tasks" \
-H "Content-Type: application/json" \
-d '{
"id": "aade2bce-55c7-468e-a606-c4e76fb2ea2a"
}'Response Format
The API returns only the status of the delete operation.
{
"status": "success"
}