Wiki source code of REST API

Version 74.1 by Thomas Mortagne on 2018/01/25

Show last authors
1 {{box cssClass="floatinginfobox" title="**Contents**"}}
2 {{toc depth="2"/}}
3 {{/box}}
4
5 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.
6
7 = Accessing the service =
8
9 By defaut the XWiki RESTful API entrypoint is rooted at the following URI:
10
11 {{code}}
12
13 http://host:port/xwiki/rest
14
15 {{/code}}
16
17 All the resource references described in the [[XWiki RESTful API Documentation>>platform:Features.XWikiRESTfulAPI#HXWikiRESTfulAPIDocumentation]] should be intended relative to this URL.
18
19 For example the ##/wikis## resources on a server running on ##localhost## on port ##8080## can be retrieved using the following URL : ##http:~/~/localhost:8080/xwiki/rest/wikis##
20
21 In addition to retrieving content in XML format, you can also retrieve it in JSON format by adding the parameter ##?media=json## in the URL. For example: ##http:~/~/localhost:8080/xwiki/rest/wikis?media=json##
22
23 = Dataset =
24
25 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.
26
27 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.
28
29 = Understanding resources and representations =
30
31 "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#Central_principle]])
32
33 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>>https://github.com/xwiki/xwiki-platform/blob/master/xwiki-platform-core/xwiki-platform-rest/xwiki-platform-rest-model/src/main/resources/xwiki.rest.model.xsd]].
34
35 Of course the same resource can be represented in many different ways. This is yet to be documented.
36
37 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.
38
39 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.
40
41 [[image:representation||height="430"]]
42
43 == Relations ==
44
45 The available relations that you might find in the XML resource representations are the following:
46
47 |=Rel|=Semantics
48 |{{{http://www.xwiki.org/rel/wikis}}}|The representation containing the list of virtual wikis.
49 |{{{http://www.xwiki.org/rel/spaces}}}|The representation containing the list of spaces in a wiki.
50 |{{{http://www.xwiki.org/rel/pages}}}|The representation containing the list of pages in a space.
51 |{{{http://www.xwiki.org/rel/translation}}}|The representation containing a translation of a page.
52 |{{{http://www.xwiki.org/rel/page}}}|The representation for a page.
53 |{{{http://www.xwiki.org/rel/space}}}|The representation for a space.
54 |{{{http://www.xwiki.org/rel/parent}}}|The representation for the page that is parent of the current resource.
55 |{{{http://www.xwiki.org/rel/home}}}|The representation for the page that is the home of the current resource.
56 |{{{http://www.xwiki.org/rel/attachmentData}}}|The representation of the actual attachment data.
57 |{{{http://www.xwiki.org/rel/comments}}}|The representation of the list of comments associated to the current resource.
58 |{{{http://www.xwiki.org/rel/attachments}}}|The representation of the list of attachments associated to the current resource.
59 |{{{http://www.xwiki.org/rel/objects}}}|The representation of the list of objects associated to the current resource.
60 |{{{http://www.xwiki.org/rel/object}}}|The representation for an object.
61 |{{{http://www.xwiki.org/rel/classes}}}|The representation of the list of classes associated to the current resource.
62 |{{{http://www.xwiki.org/rel/history}}}|The representation of the list of history information associated to the current resource.
63 |{{{http://www.xwiki.org/rel/class}}}|The representation for a class.
64 |{{{http://www.xwiki.org/rel/property}}}|The representation for a property.
65 |{{{http://www.xwiki.org/rel/propertyValues}}}|The representation for the list of property values.
66 |{{{http://www.xwiki.org/rel/properties}}}|The representation of the list of properties associated to the current resource.
67 |{{{http://www.xwiki.org/rel/modifications}}}|The representation of the list of modifications associated to the current resource.
68 |{{{http://www.xwiki.org/rel/children}}}|The representation of the list of children associated to the current resource.
69 |{{{http://www.xwiki.org/rel/tags}}}|The representation of the list of tags associated to the current resource.
70 |{{{http://www.xwiki.org/rel/tag}}}|The representation of a tag.
71 |{{{http://www.xwiki.org/rel/search}}}|The representation for a search resource.
72 |{{{http://www.xwiki.org/rel/syntaxes}}}|The representation for a syntax resource.
73
74 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).
75
76 == The "HATEOAS" Graph ==
77
78 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://code.google.com/p/uri-templates/]] representing classes of resources. Edges are the possible links that you might find in a representation of a given resource, and their associated relations.
79
80 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.
81
82 = Interacting with the XWiki RESTful API =
83
84 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!
85 If you want to write more complex programs you might download an HTTP library for your favorite language (e.g., [[http://hc.apache.org/]]), see [[this post>>xwiki:Blog.Use the Apache HTTP library to interact with the XWiki RESTful API]] by [[Mohamed Boussaa>>xwiki:XWiki.mouhb]].
86
87 Java users might take advantage of the [[JAXB>>http://jaxb.java.net/]] framework and its [[XJC binding compiler>>http://jaxb.java.net/2.2.4/docs/xjc.html]] in order to generate domain object models directly from the [[XML Schema Definition>>https://github.com/xwiki/xwiki-platform/blob/master/xwiki-platform-core/xwiki-platform-rest/xwiki-platform-rest-model/src/main/resources/xwiki.rest.model.xsd]], and use them for serializing and de-serializing XML representations.
88
89 If you use this approach (Apache HTTP Client + JAXB) you will find yourself writing some code like this:
90
91 {{code language="java"}}
92 import javax.xml.bind.JAXBContext;
93 import javax.xml.bind.Unmarshaller;
94
95 import org.apache.commons.httpclient.HttpClient;
96 import org.apache.commons.httpclient.methods.GetMethod;
97 import org.xwiki.rest.model.jaxb.Page;
98
99 ...
100 HttpClient httpClient = new HttpClient();
101 JAXBContext context = JAXBContext.newInstance("org.xwiki.rest.model.jaxb");
102 Unmarshaller unmarshaller = context.createUnmarshaller();
103
104 GetMethod getMethod = new GetMethod("http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main/pages/WebHome");
105 getMethod.addRequestHeader("Accept", "application/xml");
106 httpClient.executeMethod(getMethod);
107
108 Page page = (Page) unmarshaller.unmarshal(getMethod.getResponseBodyAsStream());
109 {{/code}}
110
111 And you will have all the information about the Main.WebHome page in the Page object, without the need of handling XML directly.
112
113 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.
114
115 By using curl, the previous example would have been:
116
117 {{code language="xml"}}
118 $ curl http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main/pages/WebHome
119 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
120 <page xmlns="http://www.xwiki.org">
121 <link rel="http://www.xwiki.org/rel/space" href="http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main"/>
122 ...
123 {{/code}}
124
125 == Authentication ==
126
127 The XWiki RESTful API supports two types of authentication:
128
129 * **HTTP BASIC Auth**: You provide your credentials using the Authorization HTTP header
130 * **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.
131
132 If you don't provide any credentials the XWiki RESTful API will recognize you as a XWiki.Guest user.
133
134 So if you have, let's say a Main.PrivatePage, and you try to do:
135
136 {{code language="none"}}
137 $ curl -v http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main/pages/PrivatePage
138 ...
139 < HTTP/1.1 401 Unauthorized
140 ...
141 {{/code}}
142
143 You will get an Unauthorized empty response.
144
145 On the contrary, by specifying Admin credentials you gain access to the actual page:
146
147 {{code language="xml"}}
148 $ curl -u Admin:admin http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main/pages/PrivatePage
149 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
150 <page xmlns="http://www.xwiki.org">
151 <link rel="http://www.xwiki.org/rel/space" href="http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main"/>
152 ...
153 <content>Only admin can see this</content>
154 </page>
155 {{/code}}
156
157 == Sending representations ==
158
159 Many resources are modifiable, so you can send representations in order to change the state of those resources (e.g., pages).
160 All modifiable resources accept XML representations that conform to the [[XML Schema Definition>>https://github.com/xwiki/xwiki-platform/blob/master/xwiki-platform-core/xwiki-platform-rest/xwiki-platform-rest-model/src/main/resources/xwiki.rest.model.xsd]]. However, some other representations might be accepted as well (see the following sections).
161
162 Resource update is usually done by using the PUT method, while resource creation is done via PUT or POST.
163
164 For example, in order to create a page you might do the following:
165
166 {{code language="xml"}}
167 $ curl -u Admin:admin -X PUT --data-binary "@newpage.xml" -H "Content-Type: application/xml" http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main/pages/NewPage
168 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
169 <page xmlns="http://www.xwiki.org">
170 <link rel="http://www.xwiki.org/rel/space" href="http://localhost:8080/xwiki/rest/wikis/xwiki/spaces/Main"/>
171 ...
172 <version>1.1</version>
173 <majorVersion>1</majorVersion>
174 <minorVersion>1</minorVersion>
175 <created>2009-03-21+01:00</created>
176 <creator>XWiki.Admin</creator>
177 <modified>2009-03-21+01:00</modified>
178 <modifier>XWiki.Admin</modifier>
179 <content>This is a new page</content>
180 </page>
181 {{/code}}
182
183 Where newpage.xml is an XML file containing
184
185 {{code language="xml"}}
186 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
187 <page xmlns="http://www.xwiki.org">
188 <title>Hello world</title>
189 <syntax>xwiki/2.0</syntax>
190 <content>This is a new page</content>
191 </page>
192 {{/code}}
193
194 The page has been created and is accessible. Subsequent PUT requests to the page URI will modify its content.
195
196 You can specify a subset of the three elements {{{title}}}, {{{syntax}}}, and {{{content}}} in the XML when updating/creating a page.
197 For example, if you just want to change the title, it is sufficient to specify only the {{{title}}} element. The current content and the syntax of the page will be left unchanged.
198
199 == Overcoming browser limitations ==
200
201 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.
202
203 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.
204
205 This overriding mechanism allows the interaction with the XWiki RESTful API by using any kind of browser.
206
207 == PUT vs POST ==
208
209 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.
210
211 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.
212
213 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.
214
215 = XWiki RESTful API Documentation =
216
217 In this section you will find the documentation of the whole XWiki RESTful API.
218
219 **application/xml** representations refers to the [[XML Schema Definition>>https://github.com/xwiki/xwiki-platform/blob/master/xwiki-platform-core/xwiki-platform-rest/xwiki-platform-rest-model/src/main/resources/xwiki.rest.model.xsd]].
220
221 Resource URIs are specified using [[URI templates>>http://code.google.com/p/uri-templates/]]. Bracketed elements are formal parameters and should be instantiated to actual values in order to retrieve the associated resource.
222
223 == Root resources ==
224
225 By defaut all the resources of the RESTful API are rooted at the following URI: ##http:~/~/server:port/xwiki/rest/## (depending on where your XWiki is running)
226
227 === / ===
228
229 * **HTTP Method:** GET
230 ** **Media types:**
231 *** application/xml (XWiki element)
232 ** **Description:** Retrieves the entry root description containing information about the server (currently returns the XWiki product Version).
233 ** **Status codes:**
234 *** 200: If the request was successful.
235
236 === /syntaxes ===
237
238 * **HTTP Method:** GET
239 ** **Media types:**
240 *** application/xml (Syntaxes element)
241 ** **Description:** The list of syntaxes supported by the XWiki instance.
242 ** **Status codes:**
243 *** 200: If the request was successful.
244
245 === /wikis ===
246
247 * **HTTP Method:** GET
248 ** **Media types:**
249 *** application/xml (Wikis element)
250 ** **Description:** The list of wikis available on the XWiki instance. Unless the wiki is configured to be a wiki farm, this list is usually made of a single element 'xwiki'.
251 ** **Status codes:**
252 *** 200: If the request was successful.
253
254 === /wikis/query?q~={query}&wikis~=wikiList[&distinct~={true,false}][&order~={asc,desc}][&start~=n][&number~=n][&prettyNames~={true,false}] ===
255
256 * **HTTP Method:** GET
257 ** **Media types:**
258 *** application/xml (SearchResults element)
259 ** **Description:** Search resources (pages and attachments):
260 *** [since 6.4] using a SOLR query (handled by the [[SOLR Query module>>extensions:Extension.Solr Search Query API]]) on the wikis that are specified as a comma separated list in the //wikis// parameter.
261 *** [before 6.4] using a Lucene query (handled by the [[Lucene Plugin>>extensions:Extension.Lucene Plugin]]) on the wikis that are specified as a comma separated list in the //wikis// parameter.
262 ** **Status codes:**
263 *** 200: If the request was successful.
264
265 === /wikis/{wikiName} ===
266
267 * **HTTP Method:** GET
268 ** **Media types:**
269 *** application/xml (Wiki element)
270 ** **Description:** information about the wiki
271 ** **Status codes:**
272 *** 200: If the request was successful.
273
274 * **HTTP Method:** POST
275 ** **Accepted Media types:**
276 *** octet/stream (A XAR file)
277 ** **Media types:**
278 *** application/xml (Wiki element)
279 ** **Query parameters**
280 *** backup={true/false} - import XAR as a backup XAR
281 *** history={RESET/REPLACE/ADD} - history importing
282 ** **Description:** import a XAR in a wiki.
283 ** **Status codes:**
284 *** 200: If the request was successful.
285
286 === /wikis/{wikiName}/search?q~={keywords}~[~[&scope~={name,content,title,objects}...]&start~=n][&number~=n][&orderField~=field&order~={asc,desc}][distinct~={true,false}][&prettyNames~={true,false}] ===
287
288 * **HTTP Method:** GET
289 ** **Media types:**
290 *** application/xml (SearchResults element)
291 ** **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}
292 ** **Status codes:**
293 *** 200: If the request was successful.
294
295 === /wikis/{wikiName}/query?q~={query}&type~={hql,xwql,lucene,solr}[&distinct~={true,false}]~~[&order~={asc,desc}][&start~=n][&number~=n][&prettyNames~={true,false}][&className~=className] ===
296
297 * **HTTP Method:** GET
298 ** **Media types:**
299 *** application/xml (SearchResults element)
300 ** **Description:** Allow to execute HQL, XWQL, Lucene or SOLR queries on the given {wikiName}. The //q// parameter contains the corresponding query. See [[HQL Query Examples in Velocity>>platform:DevGuide.velocityHqlExamples]], [[XWiki Query Language Specification>>dev:Design.XWiki Query Language Specification]], [[Lucene Plugin>>extensions:Extension.Lucene Plugin]] and [[SOLR query API>>extensions:Extension.Solr Search Query API]] examples of the queries that can be specified in this parameter. If type is //hql// and //className// is specified, the result will also contain the data for the first object of the corresponding class.
301 ** **Status codes:**
302 *** 200: If the request was successful.
303
304 === /wikimanager (This resource is only available when using the [[multi-wiki>>extensions:Extension.Wiki Application]] feature) ===
305
306 * **HTTP Method:** POST
307 ** **Accepted Media types:**
308 *** application/xml (Wiki element)
309 ** **Media types:**
310 *** application/xml (Wiki element)
311 ** **Query parameters**
312 *** template - the wiki template to be used for initializing the wiki.
313 *** history={RESET/REPLACE/ADD} - history importing
314 ** **Description:** create a new wiki.
315 ** **Status codes:**
316 *** 200: If the request was successful.
317
318 == Space resources ==
319
320 === /wikis/{wikiName}/spaces[?start~=offset&number~=n] ===
321
322 * **HTTP Method:** GET
323 ** **Media types:**
324 *** application/xml (Spaces element)
325 ** **Description:** Retrieves the list of spaces available in the {wikiName} wiki.
326 ** **Status codes:**
327 *** 200: If the request was successful.
328
329 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/search?q~={keywords}~[~[&scope~={name,content,title,objects}...]&number~=n] ===
330
331 * **HTTP Method:** GET
332 ** **Media types:**
333 *** application/xml (Search results element)
334 ** **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}
335 ** **Status codes:**
336 *** 200: If the request was successful.
337 *** 401: If the user is not authorized.
338
339 == Page resources ==
340
341 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages[?start~=offset&number~=n] ===
342
343 * **HTTP Method:** GET
344 ** **Media types:**
345 *** application/xml (Pages element)
346 ** **Description:** The list of pages in the space {spaceName}
347 ** **Status codes:**
348 *** 200: If the request was successful.
349 *** 401: If the user is not authorized.
350
351 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}[?prettyNames~={true,false}&objects~={true,false}&class~={true,false}&attachments~={true,false}] ===
352
353 * **HTTP Method:** GET
354 ** **Media types:**
355 *** application/xml (Page element)
356 ** **Query parameters**
357 *** ##prettyNames##: also return the pretty name for various document information (like the author display name, etc). Disabled by default.
358 *** ##objects##: //[since 7.3M1]// also return the objects. Disabled by default.
359 *** ##class##: //[since 7.3M1]// also return the class. Disabled by default.
360 *** ##attachments##: //[since 7.3M1]// also return the attachments metadatas. Disabled by default.
361 ** **Description:**
362 ** **Status codes:**
363 *** 200: If the request was successful.
364 *** 401: If the user is not authorized.
365
366 \\
367
368 * **HTTP Method:** PUT
369 ** **Accepted Media types:**
370 *** application/xml (Page element)
371 *** text/plain (Only page content)
372 *** application/x-www-form-urlencoded (allowed field names: title, parent, hidden //[since 7.3]//, content)
373 ** **Media types:**
374 *** application/xml (Page element)
375 ** **Description:** Create or updates a page.
376 ** **Status codes:**
377 *** 201: If the page was created.
378 *** 202: If the page was updated.
379 *** 304: If the page was not modified.
380 *** 401: If the user is not authorized.
381
382 \\
383
384 * **HTTP Method:** DELETE
385 ** **Media types:**
386 *** application/xml (Page element)
387 ** **Description:** Delete the page.
388 ** **Status codes:**
389 *** 204: If the request was successful.
390 *** 401: If the user is not authorized.
391
392 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/history[?start~=offset&number~=n] ===
393
394 * **HTTP Method:** GET
395 ** **Media types:**
396 *** application/xml (History element)
397 ** **Description:** The list of all the versions of the given page.
398 ** **Status codes:**
399 *** 200: If the request was successful.
400 *** 401: If the user is not authorized.
401
402 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/history/{version} ===
403
404 * **HTTP Method:** GET
405 ** **Media types:**
406 *** application/xml (Page element)
407 ** **Description:** The page at version {version}
408 ** **Status codes:**
409 *** 200: If the request was successful.
410 *** 401: If the user is not authorized.
411
412 ==== /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/translations[?start~=offset&number~=n] ====
413
414 * **HTTP Method:** GET
415 ** **Media types:**
416 *** application/xml (Translations element)
417 ** **Description:** The list of available translation for the page
418 ** **Status codes:**
419 *** 200: If the request was successful.
420 *** 401: If the user is not authorized.
421
422 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/translations/{language} ===
423
424 * **HTTP Method:** GET
425 ** **Media types:**
426 *** application/xml (Page element)
427 ** **Description:** The page at in the given {language}.
428 ** **Status codes:**
429 *** 200: If the request was successful.
430 *** 401: If the user is not authorized.
431
432 \\
433
434 * **HTTP Method:** PUT
435 ** **Accepted Media types:**
436 *** application/xml (Page element)
437 *** text/plain (Only page content)
438 *** application/x-www-form-urlencoded (allowed field names: title, parent, content)
439 ** **Media types:**
440 *** application/xml (Page element)
441 ** **Description:** Create or updates a page translation.
442 ** **Status codes:**
443 *** 201: If the page was created.
444 *** 202: If the page was updated.
445 *** 304: If the page was not modified.
446 *** 401: If the user is not authorized.
447
448 \\
449
450 * **HTTP Method:** DELETE
451 ** **Media types:**
452 *** application/xml (Page element)
453 ** **Description:** Delete the page translation.
454 ** **Status codes:**
455 *** 204: If the request was successful.
456 *** 401: If the user is not authorized.
457
458 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/translations/{language}/history ===
459
460 * **HTTP Method:** GET
461 ** **Media types:**
462 *** application/xml (History element)
463 ** **Description:** The list of all the available revisions of the page in a given {language}.
464 ** **Status codes:**
465 *** 200: If the request was successful.
466 *** 401: If the user is not authorized.
467
468 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/translations/{lang}/history/{version} ===
469
470 * **HTTP Method:** GET
471 ** **Media types:**
472 *** application/xml (Page element)
473 ** **Description:** A page at a given {version} in a given {language}.
474 ** **Status codes:**
475 *** 200: If the request was successful.
476 *** 401: If the user is not authorized.
477
478 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/children ===
479
480 * **HTTP Method:** GET
481 ** **Media types:**
482 *** application/xml (Pages element)
483 ** **Description:** The list of the children of a given page.
484 ** **Status codes:**
485 *** 200: If the request was successful.
486 *** 401: If the user is not authorized.
487
488 === /wikis/{wikiName}/pages[?name~=paneName&space~=spaceName&author~=authorName] ===
489
490 * **HTTP Method:** GET
491 ** **Media types:**
492 *** application/xml (Pages element)
493 ** **Description:** The list of pages in the wiki {wikiName}. Filters can be set for the name, space and/or author to include only pages that match the given filters. This resource can be used to search for pages in a wiki.
494 ** **Status codes:**
495 *** 200: If the request was successful.
496 *** 401: If the user is not authorized.
497
498 == Tag resources ==
499
500 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/tags ===
501
502 * **HTTP Method:** GET
503 ** **Media types:**
504 *** application/xml (Tags element)
505 ** **Description:** List page tags.
506 ** **Status codes:**
507 *** 200: If the request was successful.
508 *** 401: If the user is not authorized.
509
510 \\
511
512 * **HTTP Method:** PUT
513 ** **Accepted Media types:**
514 *** application/xml (Tag element)
515 *** text/plain
516 *** application/x-www-form-urlencoded (allowed field names: tag)
517 ** **Media types:**
518 *** application/xml (Tags element)
519 ** **Description:** Add a tag to the page.
520 ** **Status codes:**
521 *** 202: If the request was successful.
522 *** 401: If the user is not authorized.
523
524 === /wikis/{wikiName}/tags ===
525
526 * **HTTP Method:** GET
527 ** **Media types:**
528 *** application/xml (Tags element)
529 ** **Description:** The list of all available tags
530 ** **Status codes:**
531 *** 200: If the request was successful.
532 *** 401: If the user is not authorized.
533
534 === /wikis/{wikiName}/tags/{tag1}[,{tag2},{tag3}...][?start~=offset&number~=n] ===
535
536 * **HTTP Method:** GET
537 ** **Media types:**
538 *** application/xml (Pages element)
539 ** **Description:** The list of pages having the specified tags.
540 ** **Status codes:**
541 *** 200: If the request was successful.
542 *** 401: If the user is not authorized.
543
544 == Comments resources ==
545
546 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/comments[?start~=offset&number~=n] ===
547
548 * **HTTP Method:** GET
549 ** **Media types:**
550 *** application/xml (Comments element)
551 ** **Description:** The list of comments on a given page.
552 ** **Status codes:**
553 *** 200: If the request was successful.
554 *** 401: If the user is not authorized.
555
556 \\
557
558 * **HTTP Method:** POST
559 ** **Accepted Media types:**
560 *** application/xml (Comment element)
561 *** text/plain
562 *** application/x-www-form-urlencoded - allowed field names: ##text##, ##replyTo## (object number of the replied comment, since XE 2.3)
563 ** **Media types:**
564 *** application/xml (Comment element)
565 ** **Description:** Create a comment on the given page.
566 ** **Status codes:**
567 *** 201: If the comment was created. (The Location header will contain the URI where the comment has been created.)
568 *** 401: If the user is not authorized.
569
570 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/comments/{commentId} ===
571
572 * **HTTP Method:** GET
573 ** **Media types:**
574 *** application/xml (Comment element)
575 ** **Description:** A specific comment on a page
576 ** **Status codes:**
577 *** 200: If the request was successful.
578 *** 401: If the user is not authorized.
579
580 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/history/{version}/comments ===
581
582 * **HTTP Method:** GET
583 ** **Media types:**
584 *** application/xml (Comments element)
585 ** **Description:** The list of comments at a specific page {version}.
586 ** **Status codes:**
587 *** 200: If the request was successful.
588 *** 401: If the user is not authorized.
589
590 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/history/{version}/comments/{commentId} ===
591
592 * **HTTP Method:** GET
593 ** **Media types:**
594 *** application/xml (Comment element)
595 ** **Description:** A comment at a specific page {version}.
596 ** **Status codes:**
597 *** 200: If the request was successful.
598 *** 401: If the user is not authorized.
599
600 == Attachments resources ==
601
602 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/attachments[?start~=offset&number~=n] ===
603
604 * **HTTP Method:** GET
605 ** **Media types:**
606 *** application/xml (Attachments element)
607 ** **Description:** The list of attachments of a given page.
608 ** **Status codes:**
609 *** 200: If the request was successful.
610 *** 401: If the user is not authorized.
611
612 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/attachments/{attachmentName} ===
613
614 * **HTTP Method:** GET
615 ** **Media types:**
616 *** The same of the attachment media type.
617 ** **Description:** The attachment identified by {attachmentName} on a given page.
618 ** **Status codes:**
619 *** 200: If the request was successful.
620 *** 401: If the user is not authorized.
621
622 \\
623
624 * **HTTP Method:** PUT
625 ** **Accepted media types:**
626 *** **/**
627 ** **Media types:**
628 *** application/xml (AttachmentSummary element)
629 ** **Description:** Create an attachment identified by {attachmentName} on a given page.
630 ** **Status codes:**
631 *** 201: If the attachment was created.
632 *** 202: If the attachment was updated.
633 *** 401: If the user is not authorized.
634
635 \\
636
637 * **HTTP Method:** DELETE
638 ** **Media types:**
639 ** **Description:** Delete the attachment identified by {attachmentName} on a given page.
640 ** **Status codes:**
641 *** 204: If the attachment was deleted.
642 *** 401: If the user is not authorized.
643
644 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/history/{version}/attachments[?start~=offset&number~=n] ===
645
646 * **HTTP Method:** GET
647 ** **Media types:**
648 *** application/xml (Attachments element)
649 ** **Description:** The list of attachments at a given page {version}.
650 ** **Status codes:**
651 *** 200: If the request was successful.
652 *** 401: If the user is not authorized.
653
654 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/history/{version}/attachments/{attachmentName} ===
655
656 * **HTTP Method:** GET
657 ** **Media types:**
658 *** The same of the attachment media type.
659 ** **Description:** The attachment identified by {attachmentName} on a given page {version}.
660 ** **Status codes:**
661 *** 200: If the request was successful.
662 *** 401: If the user is not authorized.
663
664 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/attachments/{attachmentName}/history ===
665
666 * **HTTP Method:** GET
667 ** **Media types:**
668 *** application/xml (Attachments element)
669 ** **Description:** The list of available version for the {attachmentName}
670 ** **Status codes:**
671 *** 200: If the request was successful.
672 *** 401: If the user is not authorized.
673
674 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/attachments/{attachmentName}/history/{version} ===
675
676 * **HTTP Method:** GET
677 ** **Media types:**
678 *** The same of the attachment media type.
679 ** **Description:** The {attachmentName} at a given {version}
680 ** **Status codes:**
681 *** 200: If the request was successful.
682 *** 401: If the user is not authorized.
683
684 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/attachments[?name~=attachmentName&page~=pageName&author~=authorName&types~=attachmentTypeList&start~=offset&number~=n] ===
685
686 * **HTTP Method:** GET
687 ** **Media types:**
688 *** application/xml (Attachments element)
689 ** **Description:** The list of attachments of pages located in a given {spaceName}. Filters can be set for the name, page, author and/or types (comma separated list of strings) to include only attachments that match the given filters. This resource can be used to search for attachments in a space.
690 ** **Status codes:**
691 *** 200: If the request was successful.
692 *** 401: If the user is not authorized.
693
694 === /wikis/{wikiName}/attachments[?name~=attachmentName&page~=pageName&space~=spaceName&author~=authorName&types~=attachmentTypeList&start~=offset&number~=n] ===
695
696 * **HTTP Method:** GET
697 ** **Media types:**
698 *** application/xml (Attachments element)
699 ** **Description:** The list of attachments in a given {wikiName}. Filters can be set for the name, page, space, author and/or type (comma separated list of strings) to include only attachments that match the given filters. This resource can be used to search for attachments in a wiki.
700 ** **Status codes:**
701 *** 200: If the request was successful.
702 *** 401: If the user is not authorized.
703
704 == Object resources ==
705
706 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/objects[?start~=offset&number~=n] ===
707
708 * **HTTP Method:** GET
709 ** **Media types:**
710 *** application/xml (Objects element)
711 ** **Description:** The list of objects associated to a page.
712 ** **Status codes:**
713 *** 200: If the request was successful.
714 *** 401: If the user is not authorized.
715
716 \\
717
718 * **HTTP Method:** POST
719 ** **Accepted media types:**
720 *** application/xml (Object element)
721 *** application/x-www-form-urlencoded (a set of property#name=value pairs representing properties and a field className)
722 **** e.g. {{code language="none"}}className=XWiki.XWikiUsers&property#first_name=John&property#last_name=Doe{{/code}}
723 ** **Media types:**
724 *** application/xml (Object element)
725 ** **Description:** Create a new object.
726 ** **Status codes:**
727 *** 201: If the object was created (The Location header will contain the URI associated to the newly created object).
728 *** 401: If the user is not authorized.
729
730 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/objects/{className}[?start~=offset&number~=n] ===
731
732 * **HTTP Method:** GET
733 ** **Media types:**
734 *** application/xml (Objects element)
735 ** **Description:** The list of objects of a given {className} associated to a page.
736 ** **Status codes:**
737 *** 200: If the request was successful.
738 *** 401: If the user is not authorized.
739
740 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/objects/{className}/{objectNumber} ===
741
742 * **HTTP Method:** GET
743 ** **Media types:**
744 *** application/xml (Object element)
745 ** **Description:** The object of type {className} identified by {objectNumber} associated to the given page.
746 ** **Status codes:**
747 *** 200: If the request was successful.
748 *** 401: If the user is not authorized.
749
750 \\
751
752 * **HTTP Method:** PUT
753 ** **Accepted media types:**
754 *** application/xml (Object element)
755 *** application/x-www-form-urlencoded (a set of property#name=value pairs representing properties)
756 ** **Media types:**
757 *** application/xml (Object element)
758 ** **Description:** Modify the object properties.
759 ** **Status codes:**
760 *** 202: If the object was updated.
761 *** 401: If the user is not authorized.
762
763 \\
764
765 * **HTTP Method:** DELETE
766 ** **Media types:**
767 ** **Description:** Delete the object.
768 ** **Status codes:**
769 *** 204: If the object was deleted.
770 *** 401: If the user is not authorized.
771
772 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/objects/{className}/{objectNumber}/properties ===
773
774 * **HTTP Method:** GET
775 ** **Media types:**
776 *** application/xml (Properties element)
777 ** **Description:** The properties of the object of type {className} identified by {objectNumber} associated to the given page.
778 ** **Status codes:**
779 *** 200: If the request was successful.
780 *** 401: If the user is not authorized.
781
782 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/objects/{className}/{objectNumber}/properties/{propertyName} ===
783
784 * **HTTP Method:** GET
785 ** **Media types:**
786 *** application/xml (Properties element)
787 ** **Description:** The property {propertyname} of the object of type {className} identified by {objectNumber} associated to the given page.
788 ** **Status codes:**
789 *** 200: If the request was successful.
790 *** 401: If the user is not authorized.
791
792 \\
793
794 * **HTTP Method:** PUT
795 ** **Accepted media types:**
796 *** application/xml (Property element)
797 *** text/plain
798 *** application/x-www-form-urlencoded (a field property#name=value pairs representing a property)
799 ** **Media types:**
800 *** application/xml (Property element)
801 ** **Description:** Modify the object properties.
802 ** **Status codes:**
803 *** 202: If the object was updated.
804 *** 401: If the user is not authorized.
805
806 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/history/{version}/objects[?start~=offset&number~=n] ===
807
808 * **HTTP Method:** GET
809 ** **Media types:**
810 *** application/xml (Objects element)
811 ** **Description:** The list of objects associated to a page at a given {version}.
812 ** **Status codes:**
813 *** 200: If the request was successful.
814 *** 401: If the user is not authorized.
815
816 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/history/{version}/objects/{className}/{objectNumber} ===
817
818 * **HTTP Method:** GET
819 ** **Media types:**
820 *** application/xml (Object element)
821 ** **Description:** The object of type {className} identified by {objectNumber} associated to the given page at a given {version}.
822 ** **Status codes:**
823 *** 200: If the request was successful.
824 *** 401: If the user is not authorized.
825
826 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/history/{version}/objects/{className}/{objectNumber}/properties ===
827
828 * **HTTP Method:** GET
829 ** **Media types:**
830 *** application/xml (Properties element)
831 ** **Description:** The properties of the object of type {className} identified by {objectNumber} associated to the given page at a given {version}.
832 ** **Status codes:**
833 *** 200: If the request was successful.
834 *** 401: If the user is not authorized.
835
836 === /wikis/{wikiName}/spaces/{spaceName}[/spaces/{nestedSpaceName}]*/pages/{pageName}/history/{version}/objects/{className}/{objectNumber}/properties/{propertyName} ===
837
838 * **HTTP Method:** GET
839 ** **Media types:**
840 *** application/xml (Properties element)
841 ** **Description:** The property {propertyname} of the object of type {className} identified by {objectNumber} associated to the given page at a given {version}.
842 ** **Status codes:**
843 *** 200: If the request was successful.
844 *** 401: If the user is not authorized.
845
846 === /wikis/{wikiName}/class/{className}/objects ===
847
848 * **HTTP Method:** GET
849 ** **Media types:**
850 *** application/xml (Objects element)
851 ** **Description:** The list of all the objects of a given {className}.
852 ** **Status codes:**
853 *** 200: If the request was successful.
854 *** 401: If the user is not authorized.
855
856 == Class resources ==
857
858 === /wikis/{wikiName}/classes[?start~=offset&number~=n] ===
859
860 * **HTTP Method:** GET
861 ** **Media types:**
862 *** application/xml (Classes element)
863 ** **Description:** The list of all the classes defined in the wiki {wikiName}
864 ** **Status codes:**
865 *** 200: If the request was successful.
866 *** 401: If the user is not authorized.
867
868 === /wikis/{wikiName}/classes/{className} ===
869
870 * **HTTP Method:** GET
871 ** **Media types:**
872 *** application/xml (Class element)
873 ** **Description:** The {className} definition
874 ** **Status codes:**
875 *** 200: If the request was successful.
876 *** 401: If the user is not authorized.
877
878 === /wikis/{wikiName}/classes/{className}/properties ===
879
880 * **HTTP Method:** GET
881 ** **Media types:**
882 *** application/xml (Properties element)
883 ** **Description:** The properties of the class {className}.
884 ** **Status codes:**
885 *** 200: If the request was successful.
886 *** 401: If the user is not authorized.
887
888 === /wikis/{wikiName}/classes/{className}/properties/{property} ===
889
890 * **HTTP Method:** GET
891 ** **Media types:**
892 *** application/xml (Property element)
893 ** **Description:** The property {property} of the class {className}.
894 ** **Status codes:**
895 *** 200: If the request was successful.
896 *** 401: If the user is not authorized.
897
898 === /wikis/{wikiName}/classes/{className}/properties/{property}/values {{info}}Since 9.8RC1{{/info}} ===
899
900 Request parameters:
901
902 |=Name|=Description|\\
903 |limit|Limit the number of values returned. Zero or a negative number means no limit.
904 |fp|Filter parameters, used to filter the returned values. You can pass multiple filter values by repeating the query string parameter. The way in which the property values are filtered depends on the property type.
905
906 * **HTTP Method:** GET
907 ** **Media types:**
908 *** application/xml (Property element)
909 ** **Description:** The list of values for the property {property} of the class {className}. At the moment only Database List properties are supported.
910 ** **Status codes:**
911 *** 200: If the request was successful.
912 *** 401: If the user is not authorized to view the specified property.
913 *** 404: If the specified property doesn't exist.
914
915 == Job resources ==
916
917 A job is identified by an ID (##jobId##) which is a list of strings. In the REST URL, you have to represent the ID with a list of strings separated by ##/##. (eg: ##refactoring/delete/11451##).
918
919 === /jobstatus/{jobId} {{info}}Since 7.2M3{{/info}} ===
920
921 Request parameters:
922
923 |=Name|=Required|=Values|=Default|=Description|=Version
924 |##request##|no|##true~|false##|##false##|Return also the job request|9.1RC1
925 |##progress##|no|##true~|false##|##true##|Return also the job progress|9.1RC1
926 |##log##|no|##true~|false##|##false##|Return also the job log|9.1RC1
927 |##log_fromLevel##|no|##error~|warn~|info~|debug~|trace##||Indicate the level from which to return logs|9.1RC1
928
929 * **HTTP Method:** GET
930 ** **Media types:**
931 *** application/xml (JobStatus element)
932 ** **Description:** status of a job
933 ** **Status codes:**
934 *** 200: If the request was successful.
935 *** 404: If the job status has not been found
936
937 === /joblog/{jobId} {{info}}Since 7.2M3{{/info}} ===
938
939 Request parameters:
940
941 |=Name|=Required|=Values|=Default|=Description|=Version
942 |##level##|no|##error~|warn~|info~|debug~|trace##||Indicate the exact level for which to return logs|7.2M3
943 |##fromLevel##|no|##error~|warn~|info~|debug~|trace##||Indicate the level from which to return logs|7.2M3
944
945 * **HTTP Method:** GET
946 ** **Media types:**
947 *** application/xml (JobLog element)
948 ** **Description:** log of a job
949 ** **Status codes:**
950 *** 200: If the request was successful.
951 *** 404: If the job status has not been found
952
953 === /jobs {{info}}Since 9.1RC1{{/info}} ===
954
955 Request parameters:
956
957 |=Name|=Required|=Values|=Default|=Description|=Version
958 |##jobType##|yes|||The type of the job to pass to the Job Executor|9.1RC1
959 |##async##|no|##true~|false##|##true##|If false, return the response only when the job is done|9.1RC1
960
961 This API is designed to be REST clone of the Java API (the only real difference right now being way to deal with asynchronous jobs) documented on http://extensions.xwiki.org/xwiki/bin/view/Extension/Job+Module#HUseanexistingjob so the concepts (job type, job request) are the same and the exact information to put in the job request depends on the job you want to run and are usually documented in the extension this job is coming from (extension module, refactoring, etc.). There is JAXB objects provided for the Java side to help generate proper HTTP request but for pure HTTP use case it usually helps to ask for the status of an existing job to have an hint of how the XML/JSON should look like (see [[jobstatus section>>||anchor="H2Fjobstatus2F7BjobId7D"]]).
962
963 Since 9.2RC1 jobs started trough the REST API automatically get their runtime context injected with the following REST HTTP request context properties:
964
965 * current wiki
966 * current user
967 * request URL and parameters
968
969 * **HTTP Method:** PUT
970 ** **Input:**
971 *** Media Types: ##application/xml## or ##application/json##
972 *** Input body: ##JobRequest## element
973 ** **Output:**
974 *** Media Types: ##application/xml## or ##application/json##
975 *** Response body: ##JobStatus## element
976 ** **Description:** Start a new job synchronously or asynchronously
977 ** **Status codes:**
978 *** 200: If the job was successfully executed
979 *** 401: If the user is not authorized (i.e. doesn't have Programming Rights)
980 *** 500: Failing jobs with ##async=false## return an error 500 (Since 9.7RC1)
981
982 == Other resources ==
983
984 === /wikis/{wikiName}/modifications[?start~=offset&number~=n&date~=t] ===
985
986 * **HTTP Method:** GET
987 ** **Media types:**
988 *** application/xml (Modifications element)
989 ** **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)
990 ** **Status codes:**
991 *** 200: If the request was successful.
992 *** 401: If the user is not authorized.
993
994 = Custom resources =
995
996 It's possible to easily add any REST resource by registering a ##org.xwiki.rest.XWikiResource## java component on your wiki (see [[Component guide>>platform:DevGuide.WritingComponents]] for more details).
997
998 {{code language="java"}}
999 package org.xwiki.contrib.rest;
1000
1001 import javax.ws.rs.DefaultValue;
1002 import javax.ws.rs.GET;
1003 import javax.ws.rs.Path;
1004
1005 import org.xwiki.component.annotation.Component;
1006 import org.xwiki.rest.XWikiResource;
1007
1008 @Component("org.xwiki.contrib.rest.HelloWordResource")
1009 @Path("/myresources/{myresourcename}")
1010 class HelloWorldResource extends XWikiResource {
1011 @GET
1012 public String get(@PathParam("myresourcename") @DefaultValue("world") String myresourcename)
1013 {
1014 return "Hello " + myresourcename;
1015 }
1016 }
1017 {{/code}}
1018
1019 The name of the component has to be the class FQN.
1020
1021 You can find more examples on [[this page>>https://github.com/xwiki/xwiki-platform/tree/master/xwiki-platform-core/xwiki-platform-rest/xwiki-platform-rest-server/src/main/java/org/xwiki/rest]].
1022
1023 Starting from release 4.3M2, the RESTful API modules have been refactored so that now resource declarations are available in a separate module.
1024 This means that all the information about resources, i.e., URI Paths, supported methods, query parameters, and so on, are available to module developers without having to include the big REST Server module.
1025
1026 Clients willing to access/use the REST API can then declare a dependency on xwiki-platform-rest-api and have all this information available for interacting with it. There are two use cases for this:
1027
1028 * Another platform module that wants to generate responses with links to existing resources.
1029 * HTTP clients that wants to make requests to the RESTful API.
1030
1031 The xwiki-platform-rest-api module can be also seen as an authoritative reference for the REST API.
1032
1033 = Generate a REST URL for a resource =
1034
1035 If you need to generate a REST URL as String for a resource inside a script, you can use the REST script services:
1036
1037 {{code language="velocity"}}
1038 ## Return a relative URL String unless the reference wiki is different from the current wiki
1039 $services.rest.url($entityReference)
1040
1041 ## Force returning an external form URL String, false as second parameter would have the same effect that the previous call
1042 $services.rest.url($entityReference, true)
1043 {{/code}}
1044
1045 Where ##$entityReference## could be:
1046
1047 * a ##DocumentReference##
1048 * a ##SpaceReference##
1049
1050 We plan to add more supported entities in the future (ObjectReference, ClassReference, etc...).
1051
1052 = Using the RESTful API =
1053
1054 == Tutorial ==
1055
1056 See [[this tutorial>>http://blog.fabio.mancinelli.me/2011/03/07/XWikis_RESTful_API.html]] by Fabio Mancinelli.
1057
1058 == Creating an XWiki Object ==
1059
1060 In this example we will use the [[curl>>http://curl.haxx.se/]] utility as the HTTP client.
1061
1062 Imagine that you want to create on the page Test.Test a new object of the class XWiki.TestClass, supposing that the class has a property called ##text##.
1063
1064 So, on the command line, you have to do the following:
1065
1066 {{code}}
1067 $ curl -u Admin:admin
1068 -X POST
1069 -H "Content-type: application/xml"
1070 -H "Accept: application/xml"
1071 -d "@test.xml"
1072 http://localhost/xwiki/rest/wikis/xwiki/spaces/Test/pages/Test/objects
1073 {{/code}}
1074
1075 where ##test.xml## is:
1076
1077 {{code language="xml"}}
1078 <object xmlns="http://www.xwiki.org">
1079 <className>XWiki.TestClass</className>
1080 <property name="text">
1081 <value>Whatever you want to put here</value>
1082 </property>
1083 </object>
1084 {{/code}}
1085
1086 Alternatively you can use the less verbose ##application/x-www-form-urlencoded format##:
1087
1088 {{code}}
1089 $ curl -u Admin:admin
1090 -X POST
1091 -H "Content-type: application/x-www-form-urlencoded"
1092 -H "Accept: application/xml"
1093 -d "@test.txt"
1094 http://localhost/xwiki/rest/wikis/xwiki/spaces/Test/pages/Test/objects
1095 {{/code}}
1096
1097 where ##test.txt## contains something like:
1098
1099 {{code}}
1100 className=XWiki.TestClass&property#test=Whatever+you+want
1101 {{/code}}
1102
1103 Or, better, you can use directly curl to specify these parameters
1104 using multiple ##-d## switches:
1105
1106 {{code}}
1107 $ curl -u Admin:admin
1108 -X POST -H "Content-type: application/x-www-form-urlencoded"
1109 -H "Accept: application/xml"
1110 -d "className=XWiki.TestClass"
1111 -d "property#test=Whatever you want"
1112 http://localhost/xwiki/rest/wikis/xwiki/spaces/Test/pages/Test/objects
1113 {{/code}}
1114
1115 The advantage of the second approach is that curl will take care of url-encode your content, while if you send a file you are responsible for this.
1116
1117 === Remarks: ===
1118
1119 * In the ##application/x-www-form-urlencoded## format the "property#" is a standard immutable prefix that is used to distinguish attributes referring to property values from the attributes referring to the object. For example if we had ##className=XYZ&Text=FOO## we would have had an ambiguity on ##className## because we couldn't understand if ##className## is a property of the object to be set to XYZ or an attribute that describes the object itself (i.e., its metadata like the ##className##). By having the ##property### prefix this ambiguity is resolved.
1120
1121 * The information you get back when you retrieve an object (i.e., all
1122 the ##<attribute>## elements) are useful when clients need to understand the type of data contained in an object (e.g., when they want to display it). They are not necessary when creating an object because the system already has this information. That's why the XML to be sent is smaller. Actually the only information needed is the ##<className>## and a set of ##<property name="..."><value>## elements.
1123
1124 * How do you know what kind of information you can send with the XML? You can discover it by using the class description URI. If you go to ##http:~/~/localhost:8080/xwiki/rest/wikis/xwiki/classes ## you will get a list of all the classes defined in the Wiki. By looking at this you will understand what are the properties defined by each class, their types and attributes. In that way you will know what you're allowed to put in the ##<property><value>## elements of the XML you send.
1125
1126 == Formats of files ==
1127
1128 A XSD schema exists for XWiki (look [[here>>https://github.com/xwiki/xwiki-platform/blob/master/xwiki-platform-core/xwiki-platform-rest/xwiki-platform-rest-model/src/main/resources/xwiki.rest.model.xsd]] for the source).
1129
1130 However, you may not know exactly how to write the XML files to use when using the PUT method. First thing to know, you may try to get examples by using ##GET## HTTP request to the REST service using cURL or similar tools.
1131
1132 But in order to help you, you'll find below the different formats that you can use. Note that the following XML files are exhaustive files but not all the elements are required.
1133
1134 === Example of a file for a ##wiki## ===
1135
1136 {{code language="xml"}}
1137 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
1138 <wiki xmlns="http://www.xwiki.org">
1139 <id>xwiki</id>
1140 <name>xwiki</name>
1141 <description>Some description of the wiki</description>
1142 <owner>Admin</owner>
1143 </wiki>
1144 {{/code}}
1145
1146 === Example of a file for a ##space## ===
1147
1148 {{code language="xml"}}
1149 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
1150 <space xmlns="http://www.xwiki.org">
1151 <id>xwiki:Main</id>
1152 <wiki>xwiki</wiki>
1153 <name>Main</name>
1154 <home>xwiki:Main.WebHome</home>
1155 <xwikiRelativeUrl>http://localhost:8080/xwiki/bin/view/Main/</xwikiRelativeUrl>
1156 <xwikiAbsoluteUrl>http://localhost:8080/xwiki/bin/view/Main/</xwikiAbsoluteUrl>
1157 </space>
1158 {{/code}}
1159
1160 === Example of a file for a ##page## ===
1161
1162 {{code language="xml"}}
1163 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
1164 <page xmlns="http://www.xwiki.org">
1165 <id>xwiki:Main.WebHome</id>
1166 <fullName>Main.WebHome</fullName>
1167 <wiki>xwiki</wiki>
1168 <space>Main</space>
1169 <name>WebHome</name>
1170 <title>Home</title>
1171 <parent/>
1172 <parentId/>
1173 <version>1.1</version>
1174 <author>XWiki.Admin</author>
1175 <authorName>Administrator</authorName>
1176 <xwikiRelativeUrl>http://localhost:8080/xwiki/bin/view/Main/</xwikiRelativeUrl>
1177 <xwikiAbsoluteUrl>http://localhost:8080/xwiki/bin/view/Main/</xwikiAbsoluteUrl>
1178 <translations/>
1179 <syntax>xwiki/2.0</syntax>
1180 <language/>
1181 <majorVersion>1</majorVersion>
1182 <minorVersion>1</minorVersion>
1183 <hidden>false</hidden>
1184 <created>2009-09-09T02:00:00+02:00</created>
1185 <creator>XWiki.Admin</creator>
1186 <creatorName>Administrator</creatorName>
1187 <modified>2015-10-29T11:19:02+01:00</modified>
1188 <modifier>XWiki.Admin</modifier>
1189 <modifierName>Administrator</modifierName>
1190 <comment>Imported from XAR</comment>
1191 <content>{{include reference="Dashboard.WebHome" context="new"/}}</content>
1192 </page>
1193 {{/code}}
1194
1195 === Example of a file for a ##tag## ===
1196
1197 {{code language="xml"}}
1198 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
1199 <tags xmlns="http://www.xwiki.org">
1200 <tag name="food"></tag>
1201 </tags>
1202 {{/code}}
1203
1204 === Example of a file for a ##comment## ===
1205
1206 {{code language="xml"}}
1207 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
1208 <comments xmlns="http://www.xwiki.org">
1209 <comment>
1210 <id>0</id>
1211 <pageId>xwiki:Main.WebHome</pageId>
1212 <author>XWiki.Admin</author>
1213 <authorName>Administrator</authorName>
1214 <date>2015-11-13T18:20:51.936+01:00</date>
1215 <highlight/>
1216 <text>This is a comment</text>
1217 <replyTo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
1218 </comment>
1219 </comments>
1220 {{/code}}
1221
1222 === Example of a file for an ##object## ===
1223
1224 {{code language="xml"}}
1225 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
1226 <object xmlns="http://www.xwiki.org">
1227 <id>xwiki:Main.WebHome:c170a0a8-cc17-41cd-aa1e-6f6faf1d9f28</id>
1228 <guid>c170a0a8-cc17-41cd-aa1e-6f6faf1d9f28</guid>
1229 <pageId>xwiki:Main.WebHome</pageId>
1230 <pageVersion>1.1</pageVersion>
1231 <wiki>xwiki</wiki>
1232 <space>Main</space>
1233 <pageName>WebHome</pageName>
1234 <pageAuthor>XWiki.superadmin</pageAuthor>
1235 <className>XWiki.EditModeClass</className>
1236 <number>0</number>
1237 <headline>edit</headline>
1238 <property name="defaultEditMode" type="String">
1239 <attribute name="name" value="defaultEditMode"/>
1240 <attribute name="prettyName" value="Default Edit Mode"/>
1241 <attribute name="unmodifiable" value="0"/>
1242 <attribute name="disabled" value="0"/>
1243 <attribute name="size" value="15"/>
1244 <attribute name="number" value="1"/>
1245 <value>edit</value>
1246 </property>
1247 </object>
1248 {{/code}}
1249
1250 === Example of a file for a ##property## ===
1251
1252 {{code language="xml"}}
1253 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
1254 <property xmlns="http://www.xwiki.org" name="defaultEditMode" type="String">
1255 <attribute name="name" value="defaultEditMode"/>
1256 <attribute name="prettyName" value="Default Edit Mode"/>
1257 <attribute name="unmodifiable" value="0"/>
1258 <attribute name="disabled" value="0"/>
1259 <attribute name="size" value="15"/>
1260 <attribute name="number" value="1"/>
1261 <value>edit</value>
1262 </property>
1263 {{/code}}
1264
1265 = Examples =
1266
1267 == Getting the list of users ==
1268
1269 Since Users are stored as Objects, you can do a search of the type ##XWiki.XWikiUsers##. For example:
1270
1271 {{code}}
1272 http://<server>/xwiki/rest/wikis/query?q=object:XWiki.XWikiUsers
1273 {{/code}}

Get Connected