Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

*) Note that special characters such as a space ( ) must be encodeded when sent in an HTTP request. When using tools to generate a REST request, this may happen automatically. With simple cURL you must encode it manually (or with an additional tool). Example: orderBy=title%20asc

Example

Search nodes in the workspace tours which contain the keyword lake, order the result descending by the property location and restrict the limit to one.

Code Pro
curl -X GET 'http://localhost:8080/magnoliaAuthor/.rest/delivery/tours/v1?q=lake&orderBy=location%20desc&limit=1' \
-u superuser:superuser


Anchor
configuration
configuration

...