Skip to content

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/tasks

DELETE Parameters

NameTypeRequiredDescription
idstringYesUUID 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"
}