Form Metadata API
Service endpoint
HTTP GET
(v1) or POST
(v2) to the following path:
Purpose
This API is used to obtain the list of published forms as well as associated metadata, including published versions, form titles, and permissions.
In particular, this API is used internally by:
the Forms Admin page
the Zip Export API
the persistence proxy, to obtain a given form's permissions and versions
API (v2)
[SINCE Orbeon Forms 2024.1]
The Form Metadata API v2 tries to behave as much as possible like the first version of the API. The main difference is that it uses POST
instead of GET
. This allows for more complex requests to be passed to the API (filtering, sorting, paging).
Request
Basics
All requests to the API must include an XML content body, with a Content-Type: application/xml
header.
You get the list of all the published forms with a POST
on:
with the following payload, which is the simplest request that can be sent:
The following optional attributes can be added to the search
element:
Filtering
To filter the results, you can add a filter
element to your request:
One or multiple filters can be specified. If no filter is present, all results are returned.
The following metadata are supported:
The following match types are supported and follow the same semantics as in the Search API:
For an exact
match on form-version
, the special value latest
can be used to retrieve the latest version of each form.
The following combinators are supported:
Date/time values are expected to be given in ISO format.
Sorting
To sort the results, you can add a sort
element to your request:
If no sort
element is specified, the results are sorted by last modification date/time, in descending order, using the most recent last modification date/time between the local server and any remote server (i.e. using the max
combinator).
Limitations:
At the moment, only a single
sort
element is supported.
Paging
To page the results, you can use the following XML element:
page-number
is the 1-based page number and page-size
is the maximum number of results to return per page.
Paging the results is optional. By default, all results are returned.
Remote servers
The Form Metadata API v2 supports querying one or multiple remote servers. To do so, you can add remote-server
elements to your request:
When remote-server
elements are present, the API queries the remote servers in addition to the local providers. The results are then aggregated.
For more information about remote server configuration, see Remote server operations.
Examples
Retrieving the latest versions of any form with the application name acme
, sorted by form name, and paginated:
Retrieving any form that is available, either locally or remotely, sorted by the French title of the form on the local server:
Retrieving forms that have the admin
operation on the remote server:
Response
Response format
Response documents in v2 follow the same format as in v1:
The main difference with v1 is that metadata for remote servers can be included in the response as well, if credentials for remote servers are included in the request. In that case, metadata specific to remote servers will be included in remote-server
elements. Each remote server is identified by its URL.
Example:
The following elements are never included in the remote server metadata, as they are used to identify (and hence group) the form definitions: application-name
, form-name
, and form-version
.
API (v1)
Request
Basics
You get the list of all the published forms with a GET
on:
This, in turn, calls the corresponding API for each persistence API implementation defined in the properties as active, since different forms can be published on different persistence implementations. For example, this might call MySQL implementation doing a GET
on:
Then it might call the eXist implementation with another GET
on:
Finally, it aggregates the results returned by each implementation.
Restricting by app/form name
[SINCE Orbeon Forms 4.3]
Optionally, an app name or both an app name and form name can be specified on the URL. In that case, the API only returns information about published forms in that specific app, or that specific app and form is returned.
When an app specified, the URL looks like:
/fr/service/persistence/form/$app
When both an app and form name are specified, the URL looks like:
/fr/service/persistence/form/$app/$form
Returning all form definition versions
[SINCE Orbeon Forms 2016.2]
Optionally, you can pass the URL parameter all-versions
:
when set to
true
All form definition versions are returned.
when omitted or set to
false
Only the form definition with the highest published version number is returned.
Returning all form definitions
[SINCE Orbeon Forms 2019.1, 2018.2.1, 2018.1.4, 2017.2.3]
Optionally, you can pass the URL parameter all-forms
:
when set to
true
all forms are returned without checking for permissions or other criteria
when omitted or set to
false
(which was the behavior beforeall-forms
was supported)Only forms to which the user has "access" are returned.
If the user has access as per
form-builder-permissions.xml
, then all form definitions are returned.[SINCE Orbeon Forms 2022.1], this logic is ignored if
ignore-admin-permissions
is set totrue
.
Otherwise:
library
form definitions are excludedforms which have permissions defined and for which the user has no permissions at all are excluded
unavailable form definitions are excluded
Filtering by date
[SINCE Orbeon Forms 2021.1]
Optionally, you can pass the URL parameter modified-since
:
this must be an ISO date/time
when passed, only form definitions which have been modified since the given date/time are returned
For example:
Ignoring admin permissions
[SINCE Orbeon Forms 2022.1]
Optionally, you can pass the URL parameter ignore-admin-permissions
:
when set to
true
Even if the user has access to the form as per
form-builder-permissions.xml
, the forms are filtered as documented above.
when omitted or set to
false
(the default)The behavior is the same as before this parameter was supported.
If the all-forms
parameter is set to true
, then this parameter is ignored, and all forms are returned without checking for permissions or other criteria as documented.
Response
Response format
Each <form>
element contains:
<application-name>
<form-name>
All the elements inside the form metadata instance of the corresponding form definition
This can be retrieved with the following XPath expression:
/xh:html/xh:head/xf:model/xf:instance[@id = 'fr-form-metadata']/metadata/*
[SINCE Orbeon Forms 2016.1]
The
<description>
and<migration>
elements are excluded.
<last-modified-time>
[SINCE Orbeon Forms 4.4]
[UNTIL Orbeon Forms 4.10.x]
last modification date/time for the app/form combination
[SINCE Orbeon Forms 2016.1]
last modification date/time for the app/form/version combination
<form-version>
[SINCE Orbeon Forms 2016.1]
contains the version number of the given
<form>
NOTE: This is only returned when using a relational database, as the implementation of the persistence API for eXist doesn't support versioning yet.
<available>
set to
false
when the form definition is marked as not available
<permissions>
contains the form definition permissions as contained in the form definition's metadata
this is required for permissions checking to work
Latest published version
The document returned by this API looks like this:
All versions
The document returned by this API looks like this, here for the acme/order
form:
Note that the versions do not have to be in order and some versions can be missing.
Here note that version 5 is marked as not available with:
See also
Last updated