-
Notifications
You must be signed in to change notification settings - Fork 0
/
requests.http
56 lines (39 loc) · 1.17 KB
/
requests.http
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# VSCode Extension: humao.rest-client
################################################
##################### AUTH #####################
################################################
POST http://localhost:3000/api/auth/login HTTP/1.1
Content-Type: application/json
{
"username": "test",
"password": "test"
}
################################################
##################### USER #####################
################################################
### Create user
POST http://localhost:3000/api/users HTTP/1.1
Content-Type: application/json
{
"email": "test@test.com",
"username": "test",
"password": "test"
}
### Get all users
GET http://localhost:3000/api/users HTTP/1.1
Content-Type: application/json
### Get user by id
GET http://localhost:3000/api/users/3 HTTP/1.1
Content-Type: application/json
### Update user
PATCH http://localhost:3000/api/users/1 HTTP/1.1
Content-Type: application/json
{
"username": "Test"
}
### Delete user
DELETE http://localhost:3000/api/users/10 HTTP/1.1
Content-Type: application/json
################################################
##################### ORDER ####################
################################################