DELETE - Remove Resource in HTTP

From the HTTP Methods cheat sheet · CRUD Methods · verified Jul 2026

DELETE - Remove Resource

javascript
// DELETE request
fetch('/api/users/123', {
  method: 'DELETE'
})

// Properties
- Safe: No
- Idempotent: Yes
- Cacheable: No
- Body: Optional
🗑️ Removes resources permanently
✅ Idempotent - deleting twice has same effect
💡 Usually returns 204 No Content

More HTTP tasks

Back to the full HTTP Methods cheat sheet