1/4
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
REST
Representative state transfer
CRUD
Http methods/operations
Create: POST
Read: GET
Update: PUT (replace) / PATCH (modify)
Delete: Delete
Benefits
Simple and standardized
Scalable and stateless
Good performance due to caching
What a request can be made up of
Header (API key or authentication data)
An operation (POST, GET, PUT, DELETE)
Endpoint
Parameters/body (data sent in the request)
What a response can made up of
Typically in JSON
Sending data back or acknowledgment of updates back