HTTP REST APIs Auth

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/24

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 9:08 AM on 5/30/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

25 Terms

1
New cards

HTTP

request response protocol for web communication

2
New cards

REST API

resource based API using HTTP methods

3
New cards

GET

retrieve data

4
New cards

POST

create or submit data

5
New cards

PUT

replace a resource

6
New cards

PATCH

partially update a resource

7
New cards

DELETE

remove a resource

8
New cards

status 200

OK success

9
New cards

status 201

created

10
New cards

status 400

bad request

11
New cards

status 401

not authenticated

12
New cards

status 403

authenticated but not allowed

13
New cards

status 404

resource not found

14
New cards

status 500

server error

15
New cards

authentication

verifies identity

16
New cards

authorization

decides access permissions

17
New cards

JWT

signed token containing claims

18
New cards

session

server side record of user login state

19
New cards

cookie

browser stored data sent with requests

20
New cards

RBAC

permissions based on roles

21
New cards

row level security

database policies limiting row access

22
New cards

input validation

checking data before processing

23
New cards

rate limiting

restricting request volume

24
New cards

pagination

returning data in smaller pages

25
New cards

idempotency

repeated request has same effect as once