Skip to main content
DELETE
/
api
/
public
/
tasks
/
{id}
Delete a task
curl --request DELETE \
  --url https://api.vambe.me/api/public/tasks/{id}
const options = {method: 'DELETE'};

fetch('https://api.vambe.me/api/public/tasks/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.vambe.me/api/public/tasks/{id}"

response = requests.delete(url)

print(response.text)
{
  "status": "success"
}

Path Parameters

id
string<uuid>
required

The UUID of the task to delete

Response

Task deleted successfully

status
string
Example:

"success"