-
Notifications
You must be signed in to change notification settings - Fork 6
/
PlainText.txt
75 lines (51 loc) · 1.19 KB
/
PlainText.txt
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
Authentication
==============
POST http://localhost:55555/api/auth/token
{
"username": "user",
"password": "user"
}
Actions
=======
GET http://localhost:55555/api/actions
POST http://localhost:55555/api/actions
{
"Title": "Prepare workshop example"
}
PUT http://localhost:55555/api/actions
{
"Id": 1,
"Title": "Prepare workshop example",
"DueDate": "2018-12-16T12:00:00+01:00"
}
PUT http://localhost:55555/api/actions/1/move-to/1
PUT http://localhost:55555/api/actions/1/assign-to/1
DELETE http://localhost:55555/api/actions/1
Lists
=====
GET http://localhost:55555/api/lists
POST http://localhost:55555/api/lists
{
"Name": "In"
}
PUT http://localhost:55555/api/lists
{
"Id": 1,
"Name": "Inbox"
}
GET http://localhost:55555/api/lists/1/actions
DELETE http://localhost:55555/api/lists/1
Projects
========
GET http://localhost:55555/api/projects
POST http://localhost:55555/api/projects
{
"Name": "Prepare High Performance ASP.NET workshop"
}
PUT http://localhost:55555/api/projects
{
"Id": 1,
"Name": "Prepare High Performance ASP.NET advanced workshop"
}
GET http://localhost:55555/api/projects/1/actions
DELETE http://localhost:55555/api/projects/1