-
What does REST stand for?
Representational State Transfer
-
REST APIs are designed around a resources.
-
What is an identifer of a resource? Give an example.
A URI that uniquely identifies that resource. For example, the URI for a particular customer order might be:
https://adventure-works.com/orders/1 -
What are the most common HTTP verbs?
POST, GET, PUT, PATCH, and DELETE
-
Give an example of a good URI.
https://adventure-works.com/orders -
What does it mean to have a ‘chatty’ web API? Is this a good or a bad thing?
Bad thing
-
What status code does a successful GET request return?
A successful
GETmethod typically returns HTTP status code -
What status code does a successful
POSTrequest return?HTTP status code 201
-
What status code does a successful DELETE request return?
If the delete operation is successful, the web server should respond with HTTP status code 204.
