reading-notes

Code Fellows Notes

View project on GitHub

301 Reading Fifteen

Crud

  • Which HTTP method would you use to update a record through an API?

answer- Put

  • Which REST methods require an ID parameter?

answer- Put, and Delete

  • What’s the relationship between REST and CRUD?

answer- CRUD is mapped to REST commands

If you had to describe the process of creating a RESTful API in 5 steps, what would they be?

answer-

  1. create the server
  2. create the frontend
  3. import api
  4. groom data
  5. test output

main