Update and Delete with Clear Statuses
← Back to Week 3 / ← Course Index
Goal
Update and delete with clear statuses
Steps
- Implement PATCH or PUT /items/:id to update a row. Return 200 on success, 404 when not found.
- Implement DELETE /items/:id. Return 204 on success, 404 when not found.
- Extra practice if you want