Class 13
Back to home page
CRUD Basics
Q. Which HTTP method would you use to update a record through an API?
Q. Which REST methods require an ID parameter?
CRUD API speed build
Q. What’s the relationship between REST and CRUD?
- REST is pretty much the structure centered around resources using http commands, while CRUD is a cycle that is used to control data through the use of http commands.
Q. If you had to describe the process of creating a RESTful API in 5 steps, what would they be?
- Identify what resources you would need.
- Create your URLs to be used during crud.
- Decide how to show or represent your resources.
- Assign http methods to their corresponding function.
- Continue to add any other features or quality of life improvments to your application. (Examples : styling, settings, about page.)