301 Class Thirteen Reading Notes “More CRUD”
Questions
- Which HTTP method would you use to update a record through an API? The PUT method updates records
- Which REST methods require an ID parameter? The PUT and DELETE methods require an ID parameter
- What’s the relationship between REST and CRUD? CRUD is a way of manipulating information, describing the function of an application. REST is controlling data through HTTP commands.
- If you had to describe the process of creating a RESTful API in 5 steps, what would they be? defining your requirements, design the API architecture, detail its responses and error messages, build the endpoint, then testing
Resources
CRUD Operations Explained
CRUD Video
Return to the Table of Contents
Table of Contents