REST or RESTful API design (Representational State Transfer) is designed to take advantage of existing protocols This means that developers do not need to install libraries or additional software in order to take advantage of a REST API design.
which is a URI that uniquely identifies that resource. For example, the URI for a particular customer order might be:
https://adventure-works.com/orders/1
The primary or most-commonly-used HTTP verbs (or methods, as they are properly called) are POST, GET, PUT, PATCH, and DELETE. These correspond to create, read, update, and delete (or CRUD) operations, respectively.
https://adventure-works.com/orders https://adventure-works.com/orders



