Which HTTP method would you use to update a record through an API?
If you are updating a record through an API the most appropriate HTTP method to use is PUT.
Which REST methods require an ID parameter?
The methods PUT and DELETE require an ID parameter because they are being used to update or deleting an existing resource. The ID is necessary in order for the application to know which resource to update or delete.
What’s the relationship between REST and CRUD?
The CRUD concept of Create, Read, Update, and Delete is implemented by using the REST HTTP methods of POST, GET, PUT, and DELETE respectively.
If you had to describe the process of creating a RESTful API in 5 steps, what would they be?
PATCH HTTP method used for?