-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.http
55 lines (38 loc) · 870 Bytes
/
test.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
POST http://localhost:3006/api/auth/createaccount
Content-Type: application/json
{
"email":"[email protected]"
}
###
POST http://localhost:3006/api/auth/login
Content-Type: application/json
{
"email":"[email protected]",
"password":"BSZTD"
}
###
POST http://localhost:3006/api/auth/logout
Content-Type: application/json
###
GET http://localhost:3006/api/posts/
Content-Type: application/json
###
POST http://localhost:3006/api/posts/
Content-Type: application/json
{
"title":"Demo Title",
"subject":"Demo Subject",
"message":"Lorem Ipsum Come Here Baby"
}
###
GET http://localhost:3006/api/auth/resumesession
Content-Type: application/json
###
POST http://localhost:3006/api/auth/adduser
Content-Type: application/json
{
"cid": "fg",
"email": "[email protected]",
"name": "sdsdsd",
"phone": "34343434"
}