curl --request DELETE \
--url https://api.example.com/categories \
--header 'Content-Type: application/json' \
--data '{
"id": 123
}'{
"success": "true"
}
curl --request DELETE \
--url https://api.example.com/categories \
--header 'Content-Type: application/json' \
--data '{
"id": 123
}'{
"success": "true"
}
Deletes an existing category from the system. This operation is permanent and cannot be undone.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/4rt21/backend-proyecto/llms.txt
Use this file to discover all available pages before exploring further.
curl -X DELETE https://api.falconalert.com/categories \
-H "Authorization: Bearer YOUR_ADMIN_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"id": 1
}'
{
"success": "true"
}