-
Notifications
You must be signed in to change notification settings - Fork 4
/
API.apib
126 lines (114 loc) · 4.17 KB
/
API.apib
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
FORMAT: 1A
# DraciDoupe.cz
API for exposing underying public data from DraciDoupe.cz.
## Entry Point [/]
### List available pages [GET]
+ Response 200 (application/json)
{
"creations": [
{
"name": "Tvorba",
"items": [
{
"name": "Články&Eseje",
"type": "article",
"_links": {"self": { "href": "/tvorba/clanky-a-eseje/" }}
},
{
"name": "Galerie",
"type": "photo",
"_links": {"self": { "href": "/tvorba/galerie/" }}
},
{
"name": "Fotogalerie",
"type": "photo",
"_links": {"self": { "href": "/tvorba/fotogalerie/" }}
},
{
"name": "Hřbitov",
"type": "article",
"_links": {"self": { "href": "/tvorba/hrbitov/" }}
}
]
},
{
"name": "Doplňky",
"items": [
{
"name": "Dovednosti",
"type": "skills",
"_links": {"self": { "href": "/doplnky/dovednosti/" }}
},
{
"name": "Nová Povolání",
"type": "article",
"_links": {"self": { "href": "/doplnky/nova-povolani/" }}
},
{
"name": "Nové Rasy",
"type": "article",
"_links": {"self": { "href": "/doplnky/nove-rasy/" }}
}
]
},
{
"name": "Pro PJ",
"items": [
{
"name": "Bestiář",
"type": "monster",
"_links": {"self": { "href": "/pro-pj/nestvury/" }}
},
{
"name": "Dobrodružství",
"type": "adventure",
"_links": {"self": { "href": "/pro-pj/dobrodruzstvi/" }}
},
{
"name": "Předměty",
"type": "game-object",
"_links": {"self": { "href": "/pro-pj/predmety/" }}
}
]
}
],
"news": [
{
"name": "Aktuality",
"items": [
{
"name": "Aktuality",
"type": "news",
"_links": {"self": { "href": "/aktuality/" }}
},
]
}
]
}
## News [/aktuality/]
### Retrieve all news [GET]
+ Response 200 (application/json)
{
"name": "Aktuality",
"_links": {"self": { "href": "/aktuality/" }},
"items": [
{
"date": "2017-01-02 02:02:02",
"title": "Example News",
"text": "Text of news (tm)",
"author": {
"nick": "Unknown/N",
"_url": "/uzivatele/123/"
}
},
{
"date": "2017-01-01 01:01:01",
"title": "Example News 2",
"text": "Text of news (tm), but longer",
"author": {
"nick": "Unknown/N",
"_url": "/uzivatele/123/"
}
}
]
}