Skip to main content
DELETE
/
crons
/
{id}
Delete cron
curl --request DELETE \
  --url https://api.example.com/crons/{id}
{
  "id": "<string>"
}

Path parameters

id
string
required
The UUID of the cron to delete.

Response

Returns a success confirmation. All associated runs are automatically deleted.
curl -X DELETE https://app.cronapi.dev/api/v1/crons/a1b2c3d4-e5f6-7890-abcd-ef1234567890 \
  -H "Authorization: Bearer your_api_key_here"
200
{
  "success": true
}
404
{
  "error": "Cron not found"
}