-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.http
More file actions
49 lines (33 loc) · 670 Bytes
/
Copy pathtest.http
File metadata and controls
49 lines (33 loc) · 670 Bytes
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
###
GET http://127.0.0.1:8080/tasks?filter=active
###
POST http://127.0.0.1:8080/tasks
Content-Type: application/json
{"title": "asd"}
###
POST http://127.0.0.1:8080/tasks
Content-Type: application/json
{}
###
GET http://127.0.0.1:8080/tasks/6
###
GET http://127.0.0.1:8080/tasks/7
###
PATCH http://127.0.0.1:8080/tasks/6
Content-Type: application/json
{}
###
PATCH http://127.0.0.1:8080/tasks/6
Content-Type: application/json
{"title": "asd"}
###
PATCH http://127.0.0.1:8080/tasks/7
Content-Type: application/json
{"title": "asd"}
###
DELETE http://127.0.0.1:8080/tasks/7
###
DELETE http://127.0.0.1:8080/tasks/5
###
GET http://127.0.0.1:8080/tasks
###