HTTP Keywords & what is REST?
Nov 10, 2022
REST is an architectural style for providing standards between computer systems on the web, making it easier for systems to communicate with each other.
Making Requests
— REST requires an HTTP verb;
HTTP VERBS
- GET — retrieve a specific resource (by id) or a collection of resources
- POST — create a new resource
- PUT — update a specific resource (by id)
- DELETE — remove a specific resource by id