What it means to have a REST API:
It’s way to interact with a site by telling it what to do
GET
If the object exists, get information about the object from the server
POST
If the object does not exist, create the object
PUT
If the object already exists, modify the object
DELETE
removes the existing object
The two parts of a unit of data sent over the internet by an app/system:
- Payload
Header/overhead
An identifier sent with a unit of data that indicates the source and destination of the information being transmitted. The header is stripped once the data reaches its destination.
Payload
Part of the unit of transferred data that contains the info