1. POST - Create new resources, data in body, return 201
  2. PUT - Replace entire resource, all fields required
  3. PATCH - Update specific fields, partial data allowed
  4. DELETE - Remove resources, return 204
  5. URL parameters - Use :id for specific resources
  6. Request body - Use req.body for data
  7. Validation - Check for required fields and valid data. We only used very basic validation in this lesson. More on this in module 3.
Tags: