Representational State Transfer
resource
Its a URI like https://adventure-works.com/orders/1
GET, POST, PUT, PATCH, and DELETE
Heirachys
https://adventure-works.com/collection/item
It means that you are requiring the application to go through a bunch of small resources to access a request. It creates more load for the web server to go through which in-turn increases the bandwith need for the request and slows the response down.
HTTP status code 200 (OK).
404 (Not Found).
HTTP status code 201 (Created).
HTTP status code 204 (No Content).
I would like to learn more about different error codes and how to read these messages to understand what is going wrong.