Wiki source code of XWiki RESTful API

Version 10.6 by Silvia Macovei on 2009/10/12

Hide last authors
Silvia Macovei 9.1 1 = The XWiki RESTful API =
Fabio Mancinelli 1.1 2
Silvia Macovei 10.5 3 XWiki provides fine-grain access to virtually every element through an API that is based on HTTP semantics, i.e., a RESTful API. In this page you will find all the details to take advantage of this API and the instructions to use it at its full potential.
Fabio Mancinelli 1.1 4
Silvia Macovei 9.1 5 == Dataset ==
Fabio Mancinelli 1.1 6
7 This section contains a brief and high-level description of the XWiki data set that should serve as a basis for presenting resources and their associated operations.
8
Silvia Macovei 10.3 9 XWiki has **pages** organized in **spaces**. Each **page** is available in multiple **versions** (its **history**) and **translations**. Translated pages have their own **versions** and **history** which are independent. Each page might have **attachments**. Each attachment has its own **history**. Attachments are shared among all the different translations of a page (i.e., the same set of attachments is the same regardless of the page language). Pages can have one or more **objects**. Objects are instances of a **class** that contains a set of **properties**. Some objects might be directly exposed as first class entities, such as **comments** and **tags**. Objects, as attachments, are shared among all page translations.
Fabio Mancinelli 1.1 10
Silvia Macovei 9.1 11 == Understanding resources and representations ==
Fabio Mancinelli 1.1 12
Silvia Macovei 10.4 13 "An important concept in REST is the existence of resources (sources of specific information), each of which is referenced with a global identifier (e.g., an URI in HTTP). In order to manipulate these resources, components of the network (user agents and origin servers) communicate via a standardized interface (e.g., HTTP) and exchange representations of these resources (the actual documents conveying the information)." ([[Wikipedia>>http://en.wikipedia.org/wiki/Representational_State_Transfer#REST.27s_central_principle:_resources]])
Fabio Mancinelli 1.1 14
Silvia Macovei 9.1 15 Resources in XWiki are pages, attachments, objects, properties, spaces, and all the //things// we described in the previous section. XWiki has a default way of conveying the information about these resources, i.e., by providing well defined XML representations that contain all the information associated to the resource in an XML format. This format is described using an XML Schema Definition file that can be found here: [[http://svn.xwiki.org/svnroot/xwiki/platform/core/trunk/xwiki-rest/src/main/resources/xwiki.rest.model.xsd]]
Fabio Mancinelli 1.1 16
Silvia Macovei 10.4 17 Of course the same resource can be represented in many different ways. This is yet to be documented.
Fabio Mancinelli 1.1 18
Silvia Macovei 10.4 19 Another important aspect of representations is that they contain useful information for linking related resources. This is a realization of the //Hypermedia As The Engine Of The Application State (HATEOAS)// principle. In XML representations this information is conveyed through the ##<link>## tag. This tag has two important parameters: **rel** and **href**. **rel** specifies the "semantics" of the link, while **href** is the URI of the linked resource.
Silvia Macovei 9.2 20
Fabio Mancinelli 1.1 21 For example, in the representation of a page, we can have links to the comments, tags, attachments which are independent resources associated to the current page. These links are provided in the XML representation of a page and allow a client to navigate to related resources... Like we do every day when we click on a link in a web page.
Silvia Macovei 9.2 22
Silvia Macovei 9.1 23 [[image:representation||height="430"]]
Fabio Mancinelli 1.1 24
Silvia Macovei 9.1 25 === Relations ===
Fabio Mancinelli 1.1 26
Fabio Mancinelli 5.1 27 The available relations that you might find in the XML resource representations are the following:
Fabio Mancinelli 1.1 28
Silvia Macovei 9.1 29 |=Rel|=Semantics
30 |http://www.xwiki.org/rel/wikis|The representation containing the list of virtual wikis.
31 |http://www.xwiki.org/rel/spaces|The representation containing the list of spaces in a wiki.
Silvia Macovei 10.4 32 |http://www.xwiki.org/rel/pages|The representation containing the list of pages in a space.
Silvia Macovei 9.1 33 |http://www.xwiki.org/rel/translation|The representation containing a translation of a page.
34 |http://www.xwiki.org/rel/page|The representation for a page.
35 |http://www.xwiki.org/rel/space|The representation for a space.
36 |http://www.xwiki.org/rel/parent|The representation for the page that is parent of the current resource.
37 |http://www.xwiki.org/rel/home|The representation for the page that is the home of the current resource.
38 |http://www.xwiki.org/rel/attachmentData|The representation of the actual attachment data.
39 |http://www.xwiki.org/rel/comments|The representation of the list of comments associated to the current resource.
40 |http://www.xwiki.org/rel/attachments|The representation of the list of attachments associated to the current resource.
41 |http://www.xwiki.org/rel/objects|The representation of the list of objects associated to the current resource.
42 |http://www.xwiki.org/rel/object|The representation for an object.
43 |http://www.xwiki.org/rel/classes|The representation of the list of classes associated to the current resource.
44 |http://www.xwiki.org/rel/history|The representation of the list of history information associated to the current resource.
45 |http://www.xwiki.org/rel/class|The representation for a class.
46 |http://www.xwiki.org/rel/property|The representation for a property.
47 |http://www.xwiki.org/rel/properties|The representation of the list of properties associated to the current resource.
48 |http://www.xwiki.org/rel/modifications|The representation of the list of modifications associated to the current resource.
49 |http://www.xwiki.org/rel/children|The representation of the list of children associated to the current resource.
50 |http://www.xwiki.org/rel/tags|The representation of the list of tags associated to the current resource.
51 |http://www.xwiki.org/rel/tag|The representation of a tag.
52 |http://www.xwiki.org/rel/search|The representation for a search resource.
Silvia Macovei 9.2 53
Silvia Macovei 8.3 54 Relations are defined as URIs in order to provide a sort of namespace. Currently these URIs are not links to real web pages but, in the future, they might point to descriptions of their semantics on actual web pages (or other kinds of representations).
Fabio Mancinelli 1.1 55
Silvia Macovei 9.1 56 === The "HATEOAS" Graph ===
Fabio Mancinelli 1.1 57
Silvia Macovei 9.1 58 In order to better understand the relations among resources you might have a look at this [[graph>>attach:XWikiHATEOAS.pdf||]] that pictures all the resources available in the XWiki RESTful API and the relations among them. In this graph, nodes are [[URI templates>>http://bitworking.org/projects/URI-Templates/spec/draft-gregorio-uritemplate-03.txt]] representing classes of resources. Edges are the possible links that you might find in a representation of a given resource, and their associated relations.
Silvia Macovei 9.2 59
Fabio Mancinelli 1.1 60 This graph shows that by starting from the API entry-point a client can navigate and discover all the resources just by following the links provided in representations (and by knowing their semantics). This was exactly the way how this graph was generated.
61
Silvia Macovei 9.1 62 == Interacting with the XWiki RESTful API ==
Silvia Macovei 8.2 63
Oana Florea 9.5 64 The XWiki RESTful API is accessible through HTTP so, in principle, you can use every client that is capable of "speaking" HTTP in order to interact with it. Even a web browser!
Silvia Macovei 9.1 65 If you want to write more complex programs you might download an HTTP library for your favorite language (e.g., [[http://hc.apache.org/]]).
Silvia Macovei 9.2 66
Silvia Macovei 9.1 67 Java users might take advantage of the [[JAXB>>https://jaxb.dev.java.net]] framework and its [[XJC binding compiler>>https://jaxb.dev.java.net/jaxb20-ea3/docs/xjc.html]] in order to generate domain object models directly from the [[XML Schema Definition>>http://svn.xwiki.org/svnroot/xwiki/platform/core/trunk/xwiki-rest/src/main/resources/xwiki.rest.model.xsd]], and use them for serializing and de-serializing XML representations.
Silvia Macovei 9.2 68
Fabio Mancinelli 5.1 69 If you use this approach (Apache HTTP Client + JAXB) you will find yourself writing some code like this:
Fabio Mancinelli 1.1 70
Silvia Macovei 10.6 71 {{code language="none"}}
Fabio Mancinelli 1.1 72 HttpClient httpClient = new HttpClient();
73 JAXBContext context = JAXBContext.newInstance("model.package");
74 unmarshaller = context.createUnmarshaller();
75
76 GetMethod getMethod = new GetMethod("http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main/pages/WebHome");
77 getMethod.addRequestHeader("Accept", "application/xml");
78 httpClient.executeMethod(getMethod);
79
80 Page page = (Page) unmarshaller.unmarshal(getMethod.getResponseBodyAsStream());
Silvia Macovei 9.1 81 {{/code}}
Fabio Mancinelli 1.1 82
Fabio Mancinelli 5.1 83 And you will have all the information about the Main.WebHome page in the Page object, without the need of handling XML directly.
Silvia Macovei 9.2 84
Silvia Macovei 9.1 85 Because of the wide variety of HTTP frameworks available we don't provide a full tutorial about using them. However, in order to show you how to interact with the XWiki RESTful API, we will use [[curl>>http://curl.haxx.se]]: a standard command line HTTP client that provides an interface to all the functionalities of the HTTP protocol.
Silvia Macovei 9.2 86
Fabio Mancinelli 5.1 87 By using curl, the previous example would have been:
Fabio Mancinelli 1.1 88
Silvia Macovei 10.6 89 {{code language="none"}}
Fabio Mancinelli 1.1 90 $ curl http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main/pages/WebHome
91 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
92 <page xmlns="http://www.xwiki.org">
93 <link rel="http://www.xwiki.org/rel/space" href="http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main"/>
94 ...
Silvia Macovei 9.1 95 {{/code}}
Fabio Mancinelli 1.1 96
Silvia Macovei 9.1 97 === Authentication ===
Fabio Mancinelli 1.1 98
Fabio Mancinelli 5.1 99 The XWiki RESTful API supports two types of authentication:
Fabio Mancinelli 1.1 100
Silvia Macovei 9.1 101 * **HTTP BASIC Auth**: You provide your credentials using the Authorization HTTP header
102 * **XWiki session**: If you are logged in XWiki and you use the cookies provided by the authentication mechanism, you will also be authenticated to the XWiki RESTful API. This is useful, for example, when you are interacting with the API using the XMLHttpRequest object of a browser using Javascript.
Silvia Macovei 9.2 103
Fabio Mancinelli 5.1 104 If you don't provide any credentials the XWiki RESTful API will recognize you as a XWiki.Guest user.
Silvia Macovei 9.2 105
Fabio Mancinelli 5.1 106 So if you have, let's say a Main.PrivatePage, and you try to do:
Fabio Mancinelli 1.1 107
Silvia Macovei 10.6 108 {{code language="none"}}
Fabio Mancinelli 1.1 109 $ curl -v http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main/pages/PrivatePage
110 ...
111 < HTTP/1.1 401 Unauthorized
112 ...
Silvia Macovei 9.1 113 {{/code}}
Fabio Mancinelli 1.1 114
Silvia Macovei 9.3 115 You will get an Unauthorized empty response.
Silvia Macovei 9.2 116
Fabio Mancinelli 1.1 117 On the contrary, by specifying Admin credentials you gain access to the actual page:
118
Silvia Macovei 10.6 119 {{code language="none"}}
Fabio Mancinelli 1.1 120 $ curl -u Admin:admin http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main/pages/PrivatePage
121 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
122 <page xmlns="http://www.xwiki.org">
123 <link rel="http://www.xwiki.org/rel/space" href="http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main"/>
124 ...
125 <content>Only admin can see this</content>
126 </page>
Silvia Macovei 9.1 127 {{/code}}
Fabio Mancinelli 1.1 128
Silvia Macovei 9.1 129 === Sending representations ===
Fabio Mancinelli 1.1 130
131 Many resources are modifiable, so you can send representations in order to change the state of those resources (e.g., pages).
Silvia Macovei 9.1 132 All modifiable resources accept XML representations that conform to the [[XML Schema Definition>>http://svn.xwiki.org/svnroot/xwiki/platform/core/trunk/xwiki-rest/src/main/resources/xwiki.rest.model.xsd]]. However, some other representations might be accepted as well (see the following sections).
Silvia Macovei 9.2 133
Fabio Mancinelli 1.1 134 Resource update is usually done by using the PUT method, while resource creation is done via PUT or POST.
Silvia Macovei 9.2 135
Fabio Mancinelli 1.1 136 For example, in order to create a page you might do the following:
137
Silvia Macovei 10.6 138 {{code language="none"}}
Fabio Mancinelli 1.1 139 $ curl -u Admin:admin -X PUT -d "@newpage.xml" -H "Content-Type: application/xml" http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main/pages/NewPage
140 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
141 <page xmlns="http://www.xwiki.org">
142 <link rel="http://www.xwiki.org/rel/space" href="http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main"/>
143 ...
144 <version>1.1</version>
145 <majorVersion>1</majorVersion>
146 <minorVersion>1</minorVersion>
147 <created>2009-03-21+01:00</created>
148 <creator>XWiki.Admin</creator>
149 <modified>2009-03-21+01:00</modified>
150 <modifier>XWiki.Admin</modifier>
151 <content>This is a new page</content>
152 </page>
Silvia Macovei 9.1 153 {{/code}}
Fabio Mancinelli 1.1 154
155 Where newpage.xml is an XML file containing
156
Silvia Macovei 10.6 157 {{code language="none"}}
Fabio Mancinelli 1.1 158 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
159 <page xmlns="http://www.xwiki.org">
160 <title>Hello world</title>
161 <content>This is a new page</content>
162 </page>
Silvia Macovei 9.1 163 {{/code}}
Fabio Mancinelli 1.1 164
165 The page has been created and is accessible. Subsequent PUT requests to the page URI will modify its content.
166
Silvia Macovei 9.1 167 === Overcoming browser limitations ===
Fabio Mancinelli 1.1 168
Silvia Macovei 10.4 169 As said before, it could be useful to send information by using browser's XmlHttpRequest objects. However, currently many browsers only support GET and POST methods, so it is impossible to send, for example, PUT requests. In order to overcome this limitation you can override the HTTP Method by specifying a ##method## parameter in the URI query string.
Silvia Macovei 9.2 170
Silvia Macovei 10.4 171 In the previous example, if you send a POST request to the ##[[http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main/pages/NewPage?method=PUT]]## it will be interpreted as if it were an actual PUT request.
Fabio Mancinelli 1.1 172
173 This overriding mechanism allows the interaction with the XWiki RESTful API by using any kind of browser.
174
Silvia Macovei 9.1 175 === PUT vs POST ===
Fabio Mancinelli 1.1 176
Silvia Macovei 10.4 177 In the following sections you will see that sometimes resources are created by using PUT and sometimes by using POST. The general principle is that if the client is responsible for choosing the resource URI then PUT is used. If it's the server that bears this responsibility, then POST is used.
Fabio Mancinelli 1.1 178
Silvia Macovei 10.4 179 To be clearer, when a client wants to create a page it knows **where** that page should go, so it is able to communicate the server the target URI. PUT is used.
Fabio Mancinelli 1.1 180
Oana Florea 9.5 181 A client, on the contrary, cannot know beforehand what will be the URI of a comment, since comment URIs contains the ID of the comment and this information is generated by the server. In this case the client will do a POST and the server, in response, will communicate the URI it generated for the newly created comment.
Fabio Mancinelli 1.1 182
Silvia Macovei 9.1 183 == XWiki RESTful API Documentation ==
Silvia Macovei 8.4 184
Oana Florea 9.5 185 In this section you will find the documentation of the whole XWiki RESTful API.
Fabio Mancinelli 1.1 186
Silvia Macovei 9.1 187 **application/xml** representations refers to the XML Schema Definition at the following location: [[http://svn.xwiki.org/svnroot/xwiki/platform/core/trunk/xwiki-rest/src/main/resources/xwiki.rest.model.xsd]]
Fabio Mancinelli 1.1 188
Silvia Macovei 9.1 189 Resource URIs are specified using [[URI templates>>http://bitworking.org/projects/URI-Templates/spec/draft-gregorio-uritemplate-03.txt]]. Bracketed elements are formal parameters and should be instantiated to actual values in order to retrieve the associated resource.
Fabio Mancinelli 1.1 190
Silvia Macovei 9.1 191 === Root resources ===
Fabio Mancinelli 1.1 192
Silvia Macovei 9.1 193 ==== / ====
194
195 * **HTTP Method:** GET
196 ** **Media types:**
Fabio Mancinelli 1.1 197 *** application/xml (XWiki element)
Silvia Macovei 9.1 198 ** **Description:** Retrieves the entry root description containing information about the server.
199 ** **Status codes:**
Fabio Mancinelli 1.1 200 *** 200: If the request was successful.
201
Silvia Macovei 9.1 202 ==== /wikis ====
203
204 * **HTTP Method:** GET
205 ** **Media types:**
Fabio Mancinelli 1.1 206 *** application/xml (Wikis element)
Silvia Macovei 9.1 207 ** **Description:** Retrieves the entry root description containing information about the server.
208 ** **Status codes:**
Fabio Mancinelli 1.1 209 *** 200: If the request was successful.
210
Oana Florea 9.5 211 ==== /wikis/{wikiName}/search?q~={keywords}~[~[&scope~={name,content,title,objects}...~]&number~=n~] ====
Silvia Macovei 9.1 212
213 * **HTTP Method:** GET
214 ** **Media types:**
Fabio Mancinelli 1.1 215 *** application/xml (SearchResults element)
Silvia Macovei 9.1 216 ** **Description:** The list of pages and objects that contain the {keywords} in the specified {scope}s. Multiple scopes can be specified. Search results are relative to the whole {wikiName}
217 ** **Status codes:**
Fabio Mancinelli 1.1 218 *** 200: If the request was successful.
219
Silvia Macovei 9.1 220 === Space resources ===
Fabio Mancinelli 1.1 221
Silvia Macovei 10.1 222 ==== /wikis/{wikiName}/spaces[?start~=offset&number~=n] ====
Silvia Macovei 9.1 223
224 * **HTTP Method:** GET
225 ** **Media types:**
Fabio Mancinelli 1.1 226 *** application/xml (Spaces element)
Silvia Macovei 9.1 227 ** **Description:** Retrieves the list of spaces available in the {wikiName} wiki.
228 ** **Status codes:**
Fabio Mancinelli 1.1 229 *** 200: If the request was successful.
230
Oana Florea 9.5 231 ==== /wikis/{wikiName}/spaces/{spaceName}/search?q~={keywords}~[~[&scope~={name,content,title,objects}...~]&number~=n~] ====
Silvia Macovei 9.1 232
233 * **HTTP Method:** GET
234 ** **Media types:**
Fabio Mancinelli 1.1 235 *** application/xml (Search results element)
Silvia Macovei 9.1 236 ** **Description:** The list of pages and objects that contain the {keywords} in the specified {scope}s. Multiple scopes can be specified. Search results are relative to space {spaceName}
237 ** **Status codes:**
Fabio Mancinelli 1.1 238 *** 200: If the request was successful.
239 *** 401: If the user is not authorized.
240
Silvia Macovei 9.1 241 === Page resources ===
Fabio Mancinelli 1.1 242
Silvia Macovei 10.1 243 ==== /wikis/{wikiName}/spaces/{spaceName}/pages[?start~=offset&number~=n] ====
Silvia Macovei 9.1 244
245 * **HTTP Method:** GET
246 ** **Media types:**
Fabio Mancinelli 1.1 247 *** application/xml (Pages element)
Silvia Macovei 9.1 248 ** **Description:** The list of pages in the space {spaceName}
249 ** **Status codes:**
Fabio Mancinelli 1.1 250 *** 200: If the request was successful
251 *** 401: If the user is not authorized.
252
Silvia Macovei 9.1 253 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName} ====
254
255 * **HTTP Method:** GET
256 ** **Media types:**
Fabio Mancinelli 1.1 257 *** application/xml (Page element)
Silvia Macovei 9.1 258 ** **Description:**
259 ** **Status codes:**
Fabio Mancinelli 1.1 260 *** 200: If the request was successful.
261 *** 401: If the user is not authorized.
Silvia Macovei 9.1 262
263 \\
264
265 * **HTTP Method:** PUT
266 ** **Accepted Media types:**
Fabio Mancinelli 1.1 267 *** application/xml (Page element)
268 *** text/plain (Only page content)
269 *** application/x-www-form-urlencoded (allowed field names: title, parent, content)
Silvia Macovei 9.1 270 ** **Media types:**
Fabio Mancinelli 1.1 271 *** application/xml (Page element)
Silvia Macovei 9.1 272 ** **Description:** Create or updates a page.
273 ** **Status codes:**
Fabio Mancinelli 1.1 274 *** 201: If the page was created.
275 *** 202: If the page was updated.
276 *** 304: If the page was not modified.
277 *** 401: If the user is not authorized.
Silvia Macovei 9.1 278
279 \\
280
281 * **HTTP Method:** DELETE
282 ** **Media types:**
Fabio Mancinelli 1.1 283 *** application/xml (Page element)
Silvia Macovei 9.1 284 ** **Description:** Delete the page.
285 ** **Status codes:**
Fabio Mancinelli 1.1 286 *** 204: If the request was successful.
287 *** 401: If the user is not authorized.
288
Silvia Macovei 10.1 289 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/history[?start~=offset&number~=n] ====
Silvia Macovei 9.1 290
291 * **HTTP Method:** GET
292 ** **Media types:**
Fabio Mancinelli 1.1 293 *** application/xml (History element)
Silvia Macovei 9.1 294 ** **Description:** The list of all the versions of the given page.
295 ** **Status codes:**
Fabio Mancinelli 1.1 296 *** 200: If the request was successful.
297 *** 401: If the user is not authorized.
298
Silvia Macovei 9.1 299 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/history/{version} ====
300
301 * **HTTP Method:** GET
302 ** **Media types:**
Fabio Mancinelli 1.1 303 *** application/xml (Page element)
Silvia Macovei 9.1 304 ** **Description:** The page at version {version}
305 ** **Status codes:**
Fabio Mancinelli 1.1 306 *** 200: If the request was successful.
307 *** 401: If the user is not authorized.
308
Silvia Macovei 10.1 309 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/translations[?start~=offset&number~=n] ====
Silvia Macovei 9.1 310
311 * **HTTP Method:** GET
312 ** **Media types:**
Fabio Mancinelli 1.1 313 *** application/xml (Translations element)
Silvia Macovei 9.1 314 ** **Description:** The list of available translation for the page
315 ** **Status codes:**
Fabio Mancinelli 1.1 316 *** 200: If the request was successful.
317 *** 401: If the user is not authorized.
318
Silvia Macovei 9.1 319 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/translations/{language} ====
320
321 * **HTTP Method:** GET
322 ** **Media types:**
Fabio Mancinelli 1.1 323 *** application/xml (Page element)
Silvia Macovei 9.1 324 ** **Description:** The page at in the given {language}.
325 ** **Status codes:**
Fabio Mancinelli 1.1 326 *** 200: If the request was successful.
327 *** 401: If the user is not authorized.
Silvia Macovei 9.1 328
329 \\
330
331 * **HTTP Method:** PUT
332 ** **Accepted Media types:**
Fabio Mancinelli 1.1 333 *** application/xml (Page element)
334 *** text/plain (Only page content)
335 *** application/x-www-form-urlencoded (allowed field names: title, parent, content)
Silvia Macovei 9.1 336 ** **Media types:**
Fabio Mancinelli 1.1 337 *** application/xml (Page element)
Silvia Macovei 9.1 338 ** **Description:** Create or updates a page translation.
339 ** **Status codes:**
Fabio Mancinelli 1.1 340 *** 201: If the page was created.
341 *** 202: If the page was updated.
342 *** 304: If the page was not modified.
343 *** 401: If the user is not authorized.
Silvia Macovei 9.1 344
345 \\
346
347 * **HTTP Method:** DELETE
348 ** **Media types:**
Fabio Mancinelli 1.1 349 *** application/xml (Page element)
Silvia Macovei 9.1 350 ** **Description:** Delete the page translation.
351 ** **Status codes:**
Fabio Mancinelli 1.1 352 *** 204: If the request was successful.
353 *** 401: If the user is not authorized.
354
Silvia Macovei 9.1 355 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/translations/{language}/history ====
356
357 * **HTTP Method:** GET
358 ** **Media types:**
Fabio Mancinelli 1.1 359 *** application/xml (History element)
Silvia Macovei 9.1 360 ** **Description:** The list of all the available revisions of the page in a given {language}.
361 ** **Status codes:**
Fabio Mancinelli 1.1 362 *** 200: If the request was successful.
363 *** 401: If the user is not authorized.
364
Silvia Macovei 9.1 365 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/translations/{lang}/history/{version} ====
366
367 * **HTTP Method:** GET
368 ** **Media types:**
Fabio Mancinelli 1.1 369 *** application/xml (Page element)
Silvia Macovei 9.1 370 ** **Description:** A page at a given {version} in a given {language}.
371 ** **Status codes:**
Fabio Mancinelli 1.1 372 *** 200: If the request was successful.
373 *** 401: If the user is not authorized.
374
Silvia Macovei 9.1 375 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/children ====
376
377 * **HTTP Method:** GET
378 ** **Media types:**
Fabio Mancinelli 1.1 379 *** application/xml (Pages element)
Silvia Macovei 9.1 380 ** **Description:** The list of the children of a given page.
381 ** **Status codes:**
Fabio Mancinelli 1.1 382 *** 200: If the request was successful.
383 *** 401: If the user is not authorized.
384
Silvia Macovei 9.1 385 === Tag resources ===
Fabio Mancinelli 1.1 386
Silvia Macovei 9.1 387 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/tags ====
388
389 * **HTTP Method:** GET
390 ** **Media types:**
Fabio Mancinelli 1.1 391 *** application/xml (Tags element)
Silvia Macovei 9.1 392 ** **Description:** List page tags.
393 ** **Status codes:**
Fabio Mancinelli 1.1 394 *** 200: If the request was successful.
395 *** 401: If the user is not authorized.
Silvia Macovei 9.1 396
397 \\
398
399 * **HTTP Method:** PUT
400 ** **Accepted Media types:**
Fabio Mancinelli 1.1 401 *** application/xml (Tag element)
402 *** text/plain
403 *** application/x-www-form-urlencoded (allowed field names: tag)
Silvia Macovei 9.1 404 ** **Media types:**
Fabio Mancinelli 1.1 405 *** application/xml (Tags element)
Silvia Macovei 9.1 406 ** **Description:** Add a tag to the page.
407 ** **Status codes:**
Fabio Mancinelli 1.1 408 *** 202: If the request was successful.
409 *** 401: If the user is not authorized.
410
Silvia Macovei 9.1 411 ==== /wikis/{wikiName}/tags ====
412
413 * **HTTP Method:** GET
414 ** **Media types:**
Fabio Mancinelli 1.1 415 *** application/xml (Tags element)
Silvia Macovei 9.1 416 ** **Description:** The list of all available tags
417 ** **Status codes:**
Fabio Mancinelli 1.1 418 *** 200: If the request was successful.
419 *** 401: If the user is not authorized.
420
Silvia Macovei 10.1 421 ==== /wikis/{wikiName}/tags/{tag1}[,{tag2},{tag3}...][?start~=offset&number~=n] ====
Silvia Macovei 9.1 422
423 * **HTTP Method:** GET
424 ** **Media types:**
Fabio Mancinelli 1.1 425 *** application/xml (Pages element)
Silvia Macovei 9.1 426 ** **Description:** The list of pages having the specified tags.
427 ** **Status codes:**
Fabio Mancinelli 1.1 428 *** 200: If the request was successful.
429 *** 401: If the user is not authorized.
430
Silvia Macovei 9.1 431 === Comments resources ===
Fabio Mancinelli 1.1 432
Silvia Macovei 10.1 433 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/comments[?start~=offset&number~=n] ====
Silvia Macovei 9.1 434
435 * **HTTP Method:** GET
436 ** **Media types:**
Fabio Mancinelli 1.1 437 *** application/xml (Comments element)
Silvia Macovei 9.1 438 ** **Description:** The list of comments on a given page.
439 ** **Status codes:**
Fabio Mancinelli 1.1 440 *** 200: If the request was successful.
441 *** 401: If the user is not authorized.
Silvia Macovei 9.1 442
443 \\
444
445 * **HTTP Method:** POST
446 ** **Accepted Media types:**
Fabio Mancinelli 1.1 447 *** application/xml (Comment element)
448 *** text/plain
449 *** application/x-www-form-urlencoded (allowed field names: text)
Silvia Macovei 9.1 450 ** **Media types:**
Fabio Mancinelli 1.1 451 *** application/xml (Comment element)
Silvia Macovei 9.1 452 ** **Description:** Create a comment on the given page.
453 ** **Status codes:**
Fabio Mancinelli 1.1 454 *** 201: If the comment was created. (The Location header will contain the URI where the comment has been created.)
455 *** 401: If the user is not authorized.
456
Silvia Macovei 9.1 457 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/comments/{commentId} ====
458
459 * **HTTP Method:** GET
460 ** **Media types:**
Fabio Mancinelli 1.1 461 *** application/xml (Comment element)
Silvia Macovei 9.1 462 ** **Description:** A specific comment on a page
463 ** **Status codes:**
Fabio Mancinelli 1.1 464 *** 200: If the request was successful.
465 *** 401: If the user is not authorized.
466
Silvia Macovei 9.1 467 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/history/{version}/comments ====
468
469 * **HTTP Method:** GET
470 ** **Media types:**
Fabio Mancinelli 1.1 471 *** application/xml (Comments element)
Silvia Macovei 9.1 472 ** **Description:** The list of comments at a specific page {version}.
473 ** **Status codes:**
Fabio Mancinelli 1.1 474 *** 200: If the request was successful.
475 *** 401: If the user is not authorized.
476
Silvia Macovei 9.1 477 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/history/{version}/comments/{commentId} ====
478
479 * **HTTP Method:** GET
480 ** **Media types:**
Fabio Mancinelli 1.1 481 *** application/xml (Comment element)
Silvia Macovei 9.1 482 ** **Description:** A comment at a specific page {version}.
483 ** **Status codes:**
Fabio Mancinelli 1.1 484 *** 200: If the request was successful.
485 *** 401: If the user is not authorized.
486
Silvia Macovei 9.1 487 === Attachments resources ===
Fabio Mancinelli 1.1 488
Silvia Macovei 10.1 489 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/attachments[?start~=offset&number~=n] ====
Silvia Macovei 9.1 490
491 * **HTTP Method:** GET
492 ** **Media types:**
Fabio Mancinelli 1.1 493 *** application/xml (Attachments element)
Silvia Macovei 9.1 494 ** **Description:** The list of attachments of a given page.
495 ** **Status codes:**
Fabio Mancinelli 1.1 496 *** 200: If the request was successful.
497 *** 401: If the user is not authorized.
498
Silvia Macovei 9.1 499 ==== /wikis/{wikiName}/wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/attachments/{attachmentName} ====
500
501 * **HTTP Method:** GET
502 ** **Media types:**
Fabio Mancinelli 1.1 503 *** The same of the attachment media type.
Silvia Macovei 9.1 504 ** **Description:** The attachment identified by {attachmentName} on a given page.
505 ** **Status codes:**
Fabio Mancinelli 1.1 506 *** 200: If the request was successful.
507 *** 401: If the user is not authorized.
Silvia Macovei 9.1 508
509 \\
510
511 * **HTTP Method:** PUT
512 ** **Accepted media types:**
513 *** **/**
514 ** **Media types:**
Fabio Mancinelli 1.1 515 *** application/xml (AttachmentSummary element)
Silvia Macovei 9.1 516 ** **Description:** Create an attachment identified by {attachmentName} on a given page.
517 ** **Status codes:**
Fabio Mancinelli 1.1 518 *** 201: If the attachment was created.
519 *** 202: If the attachment was updated.
520 *** 401: If the user is not authorized.
Silvia Macovei 9.1 521
522 \\
523
524 * **HTTP Method:** DELETE
525 ** **Media types:**
526 ** **Description:** Delete the attachment identified by {attachmentName} on a given page.
527 ** **Status codes:**
Fabio Mancinelli 1.1 528 *** 204: If the attachment was deleted.
529 *** 401: If the user is not authorized.
530
Silvia Macovei 10.1 531 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/history/{version}/attachments[?start~=offset&number~=n] ====
Silvia Macovei 9.1 532
533 * **HTTP Method:** GET
534 ** **Media types:**
Fabio Mancinelli 1.1 535 *** application/xml (Attachments element)
Silvia Macovei 9.1 536 ** **Description:** The list of attachments at a given page {version}.
537 ** **Status codes:**
Fabio Mancinelli 1.1 538 *** 200: If the request was successful.
539 *** 401: If the user is not authorized.
540
Silvia Macovei 9.1 541 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/history/{version}/attachments/{attachmentName} ====
542
543 * **HTTP Method:** GET
544 ** **Media types:**
Fabio Mancinelli 1.1 545 *** The same of the attachment media type.
Silvia Macovei 9.1 546 ** **Description:** The attachment identified by {attachmentName} on a given page {version}.
547 ** **Status codes:**
Fabio Mancinelli 1.1 548 *** 200: If the request was successful.
549 *** 401: If the user is not authorized.
550
Silvia Macovei 9.1 551 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/attachments/{attachmentName}/history ====
552
553 * **HTTP Method:** GET
554 ** **Media types:**
Fabio Mancinelli 1.1 555 *** application/xml (??? element)
Silvia Macovei 9.1 556 ** **Description:** The list of available version for the {attachmentName}
557 ** **Status codes:**
Fabio Mancinelli 1.1 558 *** 200: If the request was successful.
559 *** 401: If the user is not authorized.
560
Silvia Macovei 9.1 561 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/attachments/{attachmentName}/history/{version} ====
562
563 * **HTTP Method:** GET
564 ** **Media types:**
Fabio Mancinelli 1.1 565 *** The same of the attachment media type.
Silvia Macovei 9.1 566 ** **Description:** The {attachmentName} at a given {version}
567 ** **Status codes:**
Fabio Mancinelli 1.1 568 *** 200: If the request was successful.
569 *** 401: If the user is not authorized.
570
Silvia Macovei 9.1 571 === Object resources ===
Fabio Mancinelli 1.1 572
Silvia Macovei 10.1 573 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/objects[?start~=offset&number~=n] ====
Silvia Macovei 9.1 574
575 * **HTTP Method:** GET
576 ** **Media types:**
Fabio Mancinelli 1.1 577 *** application/xml (Objects element)
Silvia Macovei 9.1 578 ** **Description:** The list of objects associated to a page.
579 ** **Status codes:**
Fabio Mancinelli 1.1 580 *** 200: If the request was successful.
581 *** 401: If the user is not authorized.
Silvia Macovei 9.1 582
583 \\
584
585 * **HTTP Method:** POST
586 ** **Accepted media types:**
Fabio Mancinelli 1.1 587 *** application/xml (Object element)
588 *** application/x-www-formurlencoded (a set of property#name=value pairs representing properties and a field className)
Silvia Macovei 9.1 589 ** **Media types:**
590 *** application/xml (Object element)
591 ** **Description:** Create a new object.
592 ** **Status codes:**
Fabio Mancinelli 1.1 593 *** 201: If the object was created (The Location header will contain the URI associated to the newly created object).
594 *** 401: If the user is not authorized.
595
Silvia Macovei 10.1 596 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/objects/{className}[?start~=offset&number~=n] ====
Silvia Macovei 9.1 597
598 * **HTTP Method:** GET
599 ** **Media types:**
Fabio Mancinelli 1.1 600 *** application/xml (Objects element)
Silvia Macovei 9.1 601 ** **Description:** The list of objects of a given {className} associated to a page.
602 ** **Status codes:**
Fabio Mancinelli 1.1 603 *** 200: If the request was successful.
604 *** 401: If the user is not authorized.
605
Silvia Macovei 9.1 606 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/objects/{className}/{objectNumber} ====
607
608 * **HTTP Method:** GET
609 ** **Media types:**
Fabio Mancinelli 1.1 610 *** application/xml (Object element)
Silvia Macovei 9.1 611 ** **Description:** The object of type {className} identified by {objectNumber} associated to the given page.
612 ** **Status codes:**
Fabio Mancinelli 1.1 613 *** 200: If the request was successful.
614 *** 401: If the user is not authorized.
Silvia Macovei 9.1 615
616 \\
617
618 * **HTTP Method:** PUT
619 ** **Accepted media types:**
Fabio Mancinelli 1.1 620 *** application/xml (Object element)
621 *** application/x-www-formurlencoded (a set of property#name=value pairs representing properties)
Silvia Macovei 9.1 622 ** **Media types:**
623 *** application/xml (Object element)
624 ** **Description:** Modify the object properties.
625 ** **Status codes:**
Fabio Mancinelli 1.1 626 *** 202: If the object was updated.
627 *** 401: If the user is not authorized.
Silvia Macovei 9.1 628
629 \\
630
631 * **HTTP Method:** DELETE
632 ** **Media types:**
633 ** **Description:** Delete the object.
634 ** **Status codes:**
Fabio Mancinelli 1.1 635 *** 204: If the object was deleted.
636 *** 401: If the user is not authorized.
637
Silvia Macovei 9.1 638 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/objects/{className}/{objectNumber}/properties ====
639
640 * **HTTP Method:** GET
641 ** **Media types:**
Fabio Mancinelli 1.1 642 *** application/xml (Properties element)
Silvia Macovei 9.1 643 ** **Description:** The properties of the object of type {className} identified by {objectNumber} associated to the given page.
644 ** **Status codes:**
Fabio Mancinelli 1.1 645 *** 200: If the request was successful.
646 *** 401: If the user is not authorized.
647
Silvia Macovei 9.1 648 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/objects/{className}/{objectNumber}/properties/{propertyName} ====
649
650 * **HTTP Method:** GET
651 ** **Media types:**
Fabio Mancinelli 1.1 652 *** application/xml (Properties element)
Silvia Macovei 9.1 653 ** **Description:** The property {propertyname} of the object of type {className} identified by {objectNumber} associated to the given page.
654 ** **Status codes:**
Fabio Mancinelli 1.1 655 *** 200: If the request was successful.
656 *** 401: If the user is not authorized.
Silvia Macovei 9.1 657
658 \\
659
660 * **HTTP Method:** PUT
661 ** **Accepted media types:**
Fabio Mancinelli 1.1 662 *** application/xml (Property element)
663 *** text/plain
664 *** application/x-www-formurlencoded (a field property#name=value pairs representing a property)
Silvia Macovei 9.1 665 ** **Media types:**
666 *** application/xml (Property element)
667 ** **Description:** Modify the object properties.
668 ** **Status codes:**
Fabio Mancinelli 1.1 669 *** 202: If the object was updated.
670 *** 401: If the user is not authorized.
671
Silvia Macovei 10.1 672 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/history/{version}/objects[?start~=offset&number~=n] ====
Silvia Macovei 9.1 673
674 * **HTTP Method:** GET
675 ** **Media types:**
Fabio Mancinelli 1.1 676 *** application/xml (Objects element)
Silvia Macovei 9.1 677 ** **Description:** The list of objects associated to a page at a given {version}.
678 ** **Status codes:**
Fabio Mancinelli 1.1 679 *** 200: If the request was successful.
680 *** 401: If the user is not authorized.
681
Silvia Macovei 9.1 682 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/history/{version}/objects/{className}/{objectNumber} ====
683
684 * **HTTP Method:** GET
685 ** **Media types:**
Fabio Mancinelli 1.1 686 *** application/xml (Object element)
Silvia Macovei 9.1 687 ** **Description:** The object of type {className} identified by {objectNumber} associated to the given page at a given {version}.
688 ** **Status codes:**
Fabio Mancinelli 1.1 689 *** 200: If the request was successful.
690 *** 401: If the user is not authorized.
691
Silvia Macovei 9.1 692 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/history/{version}/objects/{className}/{objectNumber}/properties ====
693
694 * **HTTP Method:** GET
695 ** **Media types:**
Fabio Mancinelli 1.1 696 *** application/xml (Properties element)
Silvia Macovei 9.1 697 ** **Description:** The properties of the object of type {className} identified by {objectNumber} associated to the given page at a given {version}.
698 ** **Status codes:**
Fabio Mancinelli 1.1 699 *** 200: If the request was successful.
700 *** 401: If the user is not authorized.
701
Silvia Macovei 9.1 702 ==== /wikis/{wikiName}/spaces/{spaceName}/pages/{pageName}/history/{version}/objects/{className}/{objectNumber}/properties/{propertyName} ====
703
704 * **HTTP Method:** GET
705 ** **Media types:**
Fabio Mancinelli 1.1 706 *** application/xml (Properties element)
Silvia Macovei 9.1 707 ** **Description:** The property {propertyname} of the object of type {className} identified by {objectNumber} associated to the given page at a given {version}.
708 ** **Status codes:**
Fabio Mancinelli 1.1 709 *** 200: If the request was successful.
710 *** 401: If the user is not authorized.
711
Silvia Macovei 9.1 712 ==== /wikis/{wikiName}/class/{className}/objects ====
713
714 * **HTTP Method:** GET
715 ** **Media types:**
Fabio Mancinelli 1.1 716 *** application/xml (Objects element)
Silvia Macovei 9.1 717 ** **Description:** The list of all the objects of a given {className}.
718 ** **Status codes:**
Fabio Mancinelli 1.1 719 *** 200: If the request was successful.
720 *** 401: If the user is not authorized.
721
Silvia Macovei 9.1 722 === Class resources ===
Fabio Mancinelli 1.1 723
Silvia Macovei 10.1 724 ==== /wikis/{wikiName}/classes[?start~=offset&number~=n] ====
Silvia Macovei 9.1 725
726 * **HTTP Method:** GET
727 ** **Media types:**
Fabio Mancinelli 1.1 728 *** application/xml (Classes element)
Silvia Macovei 9.1 729 ** **Description:** The list of all the classes defined in the wiki {wikiName}
730 ** **Status codes:**
Fabio Mancinelli 1.1 731 *** 200: If the request was successful.
732 *** 401: If the user is not authorized.
733
Silvia Macovei 9.1 734 ==== /wikis/{wikiName}/classes/{className} ====
735
736 * **HTTP Method:** GET
737 ** **Media types:**
Fabio Mancinelli 1.1 738 *** application/xml (Class element)
Silvia Macovei 9.1 739 ** **Description:** The {className} definition
740 ** **Status codes:**
Fabio Mancinelli 1.1 741 *** 200: If the request was successful.
742 *** 401: If the user is not authorized.
743
Silvia Macovei 9.1 744 ==== /wikis/{wikiName}/classes/{className}/properties ====
745
746 * **HTTP Method:** GET
747 ** **Media types:**
Fabio Mancinelli 1.1 748 *** application/xml (Properties element)
Silvia Macovei 9.1 749 ** **Description:** The properties of the class {className}.
750 ** **Status codes:**
Fabio Mancinelli 1.1 751 *** 200: If the request was successful.
752 *** 401: If the user is not authorized.
753
Silvia Macovei 9.1 754 ==== /wikis/{wikiName}/classes/{className}/properties/{property} ====
755
756 * **HTTP Method:** GET
757 ** **Media types:**
Fabio Mancinelli 1.1 758 *** application/xml (Property element)
Silvia Macovei 9.1 759 ** **Description:** The property {property} of the class {className}.
760 ** **Status codes:**
Fabio Mancinelli 1.1 761 *** 200: If the request was successful.
762 *** 401: If the user is not authorized.
763
Silvia Macovei 9.1 764 === Other resources ===
Fabio Mancinelli 1.1 765
Silvia Macovei 10.1 766 ==== /wikis/{wikiName}/modifications[?start~=offset&number~=n&timestamp~=t] ====
Silvia Macovei 9.1 767
768 * **HTTP Method:** GET
769 ** **Media types:**
Fabio Mancinelli 1.1 770 *** application/xml (Modifications element)
Silvia Macovei 9.1 771 ** **Description:** The list of the latest modification made to the wiki {wikiName} starting from time t (t is expressed in milliseconds from 1970 of the starting date)
772 ** **Status codes:**
Fabio Mancinelli 1.1 773 *** 200: If the request was successful.
774 *** 401: If the user is not authorized.

Get Connected