REST APIs

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/4

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

5 Terms

1
New cards

REST

Representative state transfer

2
New cards

CRUD

Http methods/operations

Create: POST

Read: GET

Update: PUT (replace) / PATCH (modify)

Delete: Delete

3
New cards

Benefits

Simple and standardized

Scalable and stateless

Good performance due to caching

4
New cards

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)

5
New cards

What a response can made up of

Typically in JSON

Sending data back or acknowledgment of updates back