scripts
Representational State Transfer
resources (which are any kind of object, data, or service that can be accessed by the client)
A URI, e.g. “https://adventure-works.com/orders/1”
GET, POST, PUT, PATCH, and DELETE
nouns
GOOD: https://adventure-works.com/orders AVOID: https://adventure-works.com/create-order
Normally a bad thing, chatty API’s consume resources
GET
request return?
200
GET
request return?
404
POST
request return?
201
DELETE
request return?
204