Wiki source code of The XWiki RESTful API

Version 68.1 by Thomas Mortagne on 2017/08/18

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

Get Connected