Version: 0.5
This is the REST API of the SEAL Operator system. It is used by the graphical front-end and may also be used for integration purposes. The API can be used to access the SERVICES installed with SEAL Operator in order to manage DOCUMENTS in REPOSITORIES, organize documents in LISTS and work with the TASKS provided by the services. The API requires OAuth2/OIDC authentication. See the SEAL Operator Integrators Guide for details.
Operation | Description |
---|---|
GET /services | Get list of available services |
GET /services/{sid} | Retrieve service metadata |
Operation | Description |
---|---|
POST /repo/inactives | Test for documents not actively used in a task |
GET /services/{sid}/repo | Access the document repository within a service |
POST /services/{sid}/repo | Create new entry in the root collection of the repository. |
POST /services/{sid}/repo/command | Launch a repository command |
GET /services/{sid}/repo/command/{cid} | Retrieve a command's status |
GET /services/{sid}/repo/{uuid} | Retrieve metadata of a repository entry (document or collection). |
PUT /services/{sid}/repo/{uuid} | Replace repository entry metadata |
POST /services/{sid}/repo/{uuid} | Create a new entry in a collection |
DELETE /services/{sid}/repo/{uuid} | Delete the entry |
PATCH /services/{sid}/repo/{uuid} | Update repository entry metadata (partial) |
GET /services/{sid}/repo/{uuid}/children | Access children of a collection |
GET /services/{sid}/repo/{uuid}/content | Retrieve document binary content |
PUT /services/{sid}/repo/{uuid}/content | Create or update document binary content |
DELETE /services/{sid}/repo/{uuid}/content | Delete document binary content |
GET /services/{sid}/repo/{uuid}/preview | Retrieve preview of a document's binary content |
Operation | Description |
---|---|
GET /tasks | Retrieve meta-collection of all tasks managed by all services. |
GET /services/{sid}/tasks | Access collection of tasks managed by the service. |
POST /services/{sid}/tasks | Create a new task |
GET /services/{sid}/tasks/{tid} | Retrieve metadata of a task. |
PUT /services/{sid}/tasks/{tid} | Replace task metadata |
DELETE /services/{sid}/tasks/{tid} | Delete a task |
PATCH /services/{sid}/tasks/{tid} | Update task metadata (partial) |
POST /services/{sid}/tasks/{tid}/action | Trigger an action on a task |
GET /services/{sid}/tasks/{tid}/input | Retrieve list of task input items |
PUT /services/{sid}/tasks/{tid}/input | Replace input list metadata |
POST /services/{sid}/tasks/{tid}/input | Append a new item to the input list of the task |
PATCH /services/{sid}/tasks/{tid}/input | Update input list metadata (partial) |
GET /services/{sid}/tasks/{tid}/input/{id} | Retrieve task item details |
PUT /services/{sid}/tasks/{tid}/input/{id} | Replace a task input list item |
DELETE /services/{sid}/tasks/{tid}/input/{id} | Delete a task input list item |
PATCH /services/{sid}/tasks/{tid}/input/{id} | Update a task input list item (partial) |
GET /tasks/{tid}/input/{id}/content | Retrieve input document content |
GET /services/{sid}/tasks/{tid}/output | Access list of task output items |
GET /services/{sid}/tasks/{tid}/output/{id} | Retrieve task output list item details |
Operation | Description |
---|---|
GET /lists | Access collection of available Lists |
POST /lists | Create new list |
GET /lists/{lid} | Retrieve list metadata |
PUT /lists/{lid} | Replace list metadata |
DELETE /lists/{lid} | Delete list |
PATCH /lists/{lid} | Update list metadata (partial) |
GET /lists/{lid}/items | Get list items |
POST /lists/{lid}/items | Appended an item to the list |
GET /lists/{lid}/items/{id} | Retrieve list item metadata |
PUT /lists/{lid}/items/{id} | Replace a list item |
DELETE /lists/{lid}/items/{id} | Delete a list item |
PATCH /lists/{lid}/items/{id} | Update list item (partial) |
Operation | Description |
---|---|
GET /ui | Retrieve list of default UI panels available to the user. |
GET /ui/{pid} | Retrieve the default configuration of a UI panel |
GET /panels | Retrieve list of UI panels available to the current user |
POST /panels | Create a new panel and save its configuration. |
GET /panels/{pid} | Retrieve a specific panel configuration |
PUT /panels/{pid} | Updates a saved panel configuration |
DELETE /panels/{pid} | Delete a stored panel configuration |
Operation | Description |
---|---|
GET /config | Access a configuration item or path |
PUT /config | Store a configuration item |
DELETE /config | Delete a configuration item |
Operation | Description |
---|---|
GET /messages | Access the users messages |
POST /messages | Create new message entry. |
PATCH /messages/{uuid} | Update a message |
Operation | Description |
---|---|
GET /services/{sid}/function | List connector-specific functions |
POST /services/{sid}/function/{fid} | Access a service-specific function |
Operation | Description |
---|---|
GET /sessions | Get session information |
Operation | Description |
---|---|
GET /auth | Get information about identity provider confguration |
Get information about identity provider confguration
OK, return object with idp configuration
Internal Application Error
Unexpected error. Please report a bug and include error details.
Deletes a single ConfigItem at the given path or all ConfigItems in the whole tree below if 'path' does not point to a leaf item.
path | Path/to/config/item |
query | object |
OK, configuration deleted.
Unauthorized (Auth token invalid)
Forbidden. User lacks access rights to change configuration. schema: $ref: '#/definitions/Error'
The ConfigItem was not found.
Internal Application Error
Unexpected error
Use this route to browse the configuration. Configuration is structured unix file-system like, in a path/to/item way. Use path/to/item as 'path' parameter to access a specific item or together with 'keys' parameter for retrieving only keys.
path | Path/to/config/item |
query | object | |
keys | Return an array of strings containing all recursively fetched keys below the given 'path'. Without or an empty 'path' all available keys are returned. Example response:
|
query | object |
OK, configuration items returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
The ConfigItem was not found.
Internal Application Error
Unexpected error. Please report a bug and include error details.
Stores the ConfigItem in the request body at the given path.
path | Path/to/config/item |
query | object |
OK, configuration stored.
Unauthorized (Auth token invalid)
Forbidden. User lacks access rights to change configuration. schema: $ref: '#/definitions/Error'
Internal Application Error
Unexpected error. Please report a bug and include error details.
This is the collection of Lists of the authenticated user. Use metadata property names and regular expressions in URL query string to search for entries and the offset and limit parameters to control the number of results returned.
offset | Index of first result to return. |
query | object | |
limit | Number of results to return. Maximum is 500. |
query | object | |
sort | Sort query results. Comma-separated list of property names, prefixed with '-' for descending sort order. Example: 'sort=date,-name' |
query | object | |
embed | Include information about collection members.
|
query | object |
OK, collection of lists is returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
No lists available
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Creates a new entry in the list of lists. The Content-Type
HTTP header
defines the format of the import data. Default is JSON. If a URL is
given in query as parameter href
, the list to import is retrieved from that URL.
href | URL of the list to add. Example: |
query | object |
OK, list created. List metadata returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Conflict, resource could not be created. See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Deletes the list, including all its items (but keep the documents referred to by the items).
lid | ID of the list to delete |
path | object |
OK, list removed.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
The given list UUID was not found.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
This is the root record for a given list. It contains list-level
metadata. Use the 'embed' parameter to include information about
sub-resource like items or access rights.
The client controls the exported data format with the Accept
HTTP header
field. Default is JSON.
lid | ID of the list. |
path | object | |
embed | Include information about collection members or sub-resources.
|
query | object |
OK, metadata is returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
The given list UUID was not found.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Updates or adds part of the list metadata. Only given metadata will be replaced or added, no metadata will be removed. Note that only List metadata can be updated; internal auto-generated metadata (links, embedded), if present, are ignored.
lid | ID of the list |
path | object |
OK, document list updated. New metadata returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
The given list UUID was not found.
Conflict, resource could not be updated. See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
This will completely replace the existing list metadata (if any) by the given metadata. Note that only list metadata itself can be updated. Internal auto-generated metadata (links; embedded), if present, are ignored.
lid | ID of the list. |
path | object |
OK, document list updated. New metadata returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
The given list UUID was not found.
Conflict, resource could not be updated. See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
This is the collection of items currently in the list. For performance reasons, only references are returned by default. Use metadata property names and regular expressions in URL query string to search for entries and the offset and limit parameters to control the number of results returned.
lid | ID of the list. |
path | object | |
offset | Index of first result to return. |
query | object | |
limit | Number of results to return. Maximum is 500. |
query | object | |
sort | Sort query results. Comma-separated list of property names, prefixed with '-' for descending sort order. Example: 'sort=href,-index' |
query | object | |
embed | Sub-resources to include in the response.
|
query | object |
OK, collection of list items is returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
List not found or no list items present
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Lists are ordered sets, items have consecutive indices (0..n). POSTing to this route will append a new item to the list (at the end)
lid | ID of the list. |
path | object | |
href | Relative URL of the document instance to add to the list |
query | object |
OK, new item has been added to the list.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
The given list UUID was not found.
Conflict, resource could not be created. See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Deletes an entry from a list. Only the list entry is removed, not the document. Note that id is NOT the index of an item in the list. The index is part of item metadata.
lid | ID of the list |
path | object | |
id | ID of the item to delete |
path | object |
OK, list item removed.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
The given list or list item UUID was not found.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Get metadata record of a list item. Note that the 'id' is NOT the index, which is part of item metadata, but the UUID.
lid | ID of the list. |
path | object | |
id | ID of the list item |
path | object |
OK, list item data is returned
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
The given list or list item uuid was not found.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Update the metadata record of the current list item, adding missing entries but removing nothing. Note that the ID is NOT the index of the item in the list. The index is part of item metadata.
lid | ID of the list. |
path | object | |
id | ID of the element. |
path | object | |
href | Relative URL of document to link. This is a convenient way of just updating the href property of the existent list item. |
query | object |
OK, list item updated, item data returned
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
The given list or list item UUID was not found.
Conflict, resource could not be updated. See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Update and replace the entire metadata record of the current list item. Note that the ID is NOT the index of the item in the list. The index is part of item metadata.
lid | ID of the list. |
path | object | |
id | ID of the element. |
path | object |
OK, list item is updated, item data returned
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
The given list or list item UUID was not found.
Conflict, resource could not be updated. See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Every user has his own list of messages containing info, warning and error messages of various panels and actions. The messages are stored on server until they expire. This route provides access to the messages. Use property names and regular expressions in URL query string to search for entries and the offset and limit parameters to control the number of results returned.
offset | Index of first result to return. |
query | object | |
limit | Number of results to return. Maximum is 500. |
query | object | |
sort | Sort query results. Comma-separated list of property names, prefixed with '-' for descending sort order. Example: 'sort=date,-type' |
query | object |
OK, list of entries is returned.
Unauthorized (Auth token invalid)
Mo (matching) messages found
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Creates a new record in the message list and assigns the posted data. The server adds a UUID and a creation date to each entry if not already present.
OK, entry created. Entry metadata returned.
Unauthorized (Auth token invalid)
The service does not provide messages
Conflict, resource could not be created. See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Update a message entry. Only data given with the patch will be changed/added; no entries removed. Updating uuid and creation date is prohibited.
uuid | ID of the message entry |
path | object |
OK, message entry updated, new message returned.
Unauthorized (Auth token invalid)
Message not found
Conflict, message could not be updated. See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
The SEAL Operator user interface provides the user with a set of panels to use. A GET call to this route returns a list of user defined panels available to the current user. Use property names and regular expressions in URL query string to search for entries. User-specific configurations can be stored using a POST request; these can also be edited and deleted later.
OK, list of UI panel configurations returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
No panels found.
Intenral Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Users can create new panels and save their configuration under a given name for further use. If the ConfigItem does not contain a "name" key, a name for the configuration will be auto-generated. If the ConfigItem contains a "createpanel" key with value "1", an event is sent to the UI indicating the creation of a new panel with the objective of showing it. If the ConfigItem contains a "taskId" key with the UUID of an existing task as value, a new UI panel will be created and the given task assigned.
x-owner | User that should own the new panel. The user creating the panel becomes its creator, adding an owner is optional. Owner and creator rights can be managed through roles & rights. User identifiers can be anything, e. g. SAMaccountname or UPN. Must be matched with a claim from the JWT token in order to work in the user interface. |
header | object |
OK, configuration was saved. The returned configItem contains the generated ID.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Conflict. A panel configuration under the "name" given in the ConfigItem already exists.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
User-specific panel configurations can be delete by a DELETE request to this route.
pid | ID of the panel configuration to remove. |
path | object |
OK, panel configuration was deleted, return deleted configuration.
Unauthorized (Auth token invalid)
Forbidden. The current user lacks access rights, or is trying to delete a read-only default configuration. schema: $ref: '#/definitions/Error'
Panel not found. The given PID is unknown.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Returns the configuration for a panel stored by the current user.
pid | ID of the panel |
path | object |
OK, configuration returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Panel not found. The given PID is unknown.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
A PUT request to a panel configuration will replace the entire stored configuration with the one contained in the request body. It is possible to use a different value for the "name" key in order to rename the saved configuration; however, the new name must not be in use. Note that only user-specific panel configurations can be updated.
pid | ID of the panel |
path | object |
OK, configuration updated.
Unauthorized (Auth token invalid)
Forbidden. The current user lacks access rights, or is trying to update a read-only default configuration. schema: $ref: '#/definitions/Error'
Panel not found. The given PID is unknown.
Conflict. A panel configuration under the "name" given in the ConfigItem already exists.
Intenral Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Filters list of document IDs and returns only documents currently not used in a task in status processing.
OK, response contains list of inactive documents
Invalid data type in POST request
Unauthorized (Auth token invalid)
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
A GET call to this route will return a list of active services currently available through the API.
OK, collection of services is returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the service list.
Internal Application Error
Unexpected error. Please report a bug and include the error details.
oauth | authN |
A GET call to this route will return metadata of the service.
sid | ID of the service. |
path | object |
OK, service metadata is returned
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the service metadata.
The requested service was not found.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Services may expose individual functions, e. g. to provide dynamic data for selection lists in UI panels. The function routes are synchronous calls in contrast to the asynchronous commands. This route returns all supported functions of a service.
sid | ID of the service. |
path | object |
OK, list of functions is returned.
Unauthorized (Auth token invalid)
Service does not exist or does not provide functions
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
This route triggers a service-specific function and returns the result. The function routes are synchronous calls in contrast to the asynchronous commands.
sid | ID of the repository. |
path | object | |
fid | Name of the function to calls |
path | object | |
params | String with a list of function specific parameter as key value pairs. Syntax:
|
query | object |
OK, function result is returned.
Unauthorized (Auth token invalid)
Service does not exist or does not provide this function
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Some services (not all) expose access to documents. All documents available through a service are accessible via the 'repo' route. This route provides access to the repository root collection, containing documents and/or child collections. Use metadata property names and regular expressions in URL query string to search for entries (documents or collections) and the offset and limit parameters to control the number of results returned.
sid | ID of the repository. |
path | object | |
offset | Index of first result to return. |
query | object | |
limit | Number of results to return. Maximum is 500. |
query | object | |
sort | Sort query results. Comma-separated list of property names, prefixed with '-' for descending sort order. Example: 'sort=date,-name' |
query | object | |
scope | Set the scope when searching for documents. Possible values are |
query | object | |
embed | Include sub-resource or sub-collection data in response. "permissions": include access rights records for each entry. "thumb": include base64-encoded thumbnail image for each entry, e. g.
|
query | object |
OK, collection of entries is returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service not found or no repository available
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Creates a new record in the current repository, inside the root collection, and assigns the posted metadata.
sid | ID of the service. |
path | object | |
x-owner | User that should own the new entry. The user creating the entry becomes its creator, adding an owner is optional. Owner and creator rights can be managed through roles & rights. User identifiers can be anything, e. g. SAMaccountname or UPN. Must be matched with a claim from the JWT token in order to work in the user interface. |
header | object |
OK, entry created. Entry metadata returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service does not exist or has no repository
Conflict, resource could not be created. See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Launches a command in the given repository. Returns a JSON object containing a command ID for tracking status of asynchronous commands.
sid | ID of the service. |
path | object |
OK, command started. Command ID will be returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service does not exist, has no repository or repository does not support commands.
Conflict, resource could not be created. See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Returns a JSON object containing the status of the command. Command resources are automatically deleted after a final state (success or failure) was delivered once to the client or it is expired.
sid | ID of the service. |
path | object | |
cid | ID of the command. |
path | object |
OK, status of command resource is returned
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service does not exist, has no repository or the given command ID was not recognized.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Removes the current entry from the repository. This will not only remove the reference within SEAL Operator, but the actual record and content in the target system.
sid | ID of the service. |
path | object | |
uuid | UUID of the entry to delete |
path | object | |
force | Delete document even if it is still in use by one or more tasks. |
query | object |
OK, entry was deleted.
Unauthorized (Auth token invalid)
Forbidden (deletion refused by target system)
Service does not exist, has no repository or the given uuid was not found.
Conflict, resource could not be deleted. Returns collection of tasks using the current document.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Given a 'uuid' parameter, this route retrieves an entry's metadata. The entry may be either a document or a collection.
sid | ID of the service. |
path | object | |
uuid | ID of the repository entry |
path | object |
OK, entry metadata is returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service does not exist, has no repository or the given uuid was not found.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Update the given entry's metadata. Only data given with the patch will be changed/added, no existing entries removed. Internal auto-generated metadata (links, embedded), if given, are ignored.
sid | ID of the service. |
path | object | |
uuid | UUID of the entry |
path | object |
OK, entry metadata replaced, new metadata returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service does not exist, has no repository or the given uuid was not found.
Conflict, resource could not be updated. See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
If the entry under the given UUID is a collection, then a POST request to this route will create a new entry in the collection. Whether the created entry will be a document or another collection depends on the metadata enclosed in the request body. See RepoEntry data model.
sid | ID of the service. |
path | object | |
uuid | UUID of the collection in which to create a new entry |
path | object | |
x-owner | User that should own the new entry. The user creating the entry becomes its creator, adding an owner is optional. Owner and creator rights can be managed through roles & rights. User identifiers can be anything, e. g. SAMaccountname or UPN. Must be matched with a claim from the JWT token in order to work in the user interface. |
header | object |
OK, new entry created, metadata of the entry returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service does not exist, has no repository or the given UUID was not found.
Method not allowed. The entry under 'uuid' is not a collection.
Conflict, resource could not be updated. See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Completely replace the metadata record of the given entry. Only record metadata can be replaced; internal auto-generated metadata (links, embedded), if given, are ignored.
sid | ID of the repository. |
path | object | |
uuid | UUID of the entry |
path | object |
OK, entry metadata replaced, new metadata returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service does not exist, has no repository or the given uuid was not found.
Conflict, resource could not be updated. See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Some services (not all) expose access to documents. All documents available through a service are accessible via the 'repo' route. This route provides access to the children of a collection, containing documents and/or collections. Use metadata property names and regular expressions in URL query string to search for entries (documents or collections), offset and limit parameters to control the number of results returned.
sid | ID of the repository. |
path | object | |
uuid | UUID of the parent collection |
path | object | |
offset | Index of first result to return. |
query | object | |
limit | Number of results to return. Maximum is 500. |
query | object | |
sort | Sort query results. Comma-separated list of property names, prefixed with '-' for descending sort order. Example: 'sort=date,-name' |
query | object | |
embed | Include sub-resource or sub-collection data in response. "permissions": include access rights records for each entry. "icon": include icon-font and value for each entry, e. g.
"thumb": include base64 encoded thumbnail image for each entry, e. g.
|
query | object |
OK, collection of entries is returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Not found. Either no entry was found under the given 'uuid', or the entry is not a collection, or the collection has no children (yet). See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Deletes the binary content of a document, leaving metadata only. Note that some repositories will not allow this operation. To delete binary content from such repositories, you will need to delete the entire document. Deleting binary content is not supported by collection type entries.
sid | ID of the service. |
path | object | |
uuid | UUID of the document |
path | object |
OK, content was deleted.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to delete the binary content.
Service does not exist, has no repository, the given UUID was not found or entry has no content.
Method not allowed. Either the entry under 'uuid' is not a document, or it does not support deleting of the binary content. See error message for details.
Conflict, resource could not be deleted. Returns collection of tasks using the current document.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
If the entry under 'uuid' is a document, then this route provides access to the binary content (i. e. the actual file).
sid | ID of the service. |
path | object | |
uuid | UUID of the document |
path | object |
OK, content is returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to read the binary content.
Not found. Either no entry was found under the given 'uuid', or the entry is not a document, or the document has no binary content (yet). See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Upload binary content of a document. Create if none exists, or replace existent file. Uploading binary content to collection type entries is not supported.
sid | ID of the service. |
path | object | |
uuid | UUID of the document |
path | object |
OK, content was updated.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to update the binary content.
Service does not exist, has no repository, the given uuid was not found or entry is not a document.
Method not allowed. The entry under 'uuid' is not a document, or the document does not support changing of the bianry content.
Conflict, resource could not be updated. See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
If the entry under 'uuid' is a document, then this route provides access to the preview content. Collection type entries do not support the preview option.
sid | ID of the service. |
path | object | |
uuid | UUID of the document |
path | object |
OK, preview is returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to read the binary content.
Not found. Either no entry was found under the given 'uuid', or the entry is not a document, or the document has no binary content, or the preview is not created (so far). See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
This route provides access to the root collection of known tasks for the current service. Use property names and regular expressions in URL query string to search for tasks, e. g. 'metadata.creationDay' to search for the property 'creationDay' stored in the task metadata. Use the offset and limit parameters to control the number of results returned. Use the 'embed' parameter to include information about instances and sub-resources.
sid | ID of the service managing the tasks |
path | object | |
offset | Index of first result to return. |
query | object | |
limit | Number of results to return. Maximum is 500. |
query | object | |
sort | Sort query results. Comma-separated list of property names, prefixed with '-' for descending sort order. Example: 'sort=date,-name' |
query | object | |
inputDocument | A document UUID to search for in the input lists of all tasks. |
query | object | |
embed | Information about sub-collections and/or sub-resources to include in the response.
|
query | object | |
inlineCount | Return a JSON object containing the number of tasks found, according to the query parameters, instead of an array with tasks. |
query | object |
OK, collection of tasks or count is returned. Example for count:
{
count: 0
}
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service does not exist or does not provide tasks, or no (matching) tasks were found.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Adds a new task to the collection. If JSON data is given in the body, the task is created with the given metadata and input list. Otherwise, the task is created with default metadata, and its input list is populated with the RList or CSV content given in the request body.
sid | ID of the service managing the new task |
path | object | |
x-owner | User that should own the new task. The user creating the task becomes its creator, adding an owner is optional. Owner and creator rights can be managed through roles & rights. User identifiers can be anything, e. g. SAMaccountname or UPN. Must be matched with a claim from the JWT token in order to work in the user interface. |
header | object |
OK, task created. Task metadata returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service does not exist or does not provide tasks.
Conflict, resource could not be created. See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Deletes a task from the collection. This is only possible if the task is not currently active and if the user has sufficient access rights.
sid | ID of the service managing the task |
path | object | |
tid | ID of the task to delete. |
path | object |
OK. Task deleted.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service does not exist or does not provide tasks, or the given task UUID was not found.
Conflict. Task cannot be deleted because it is currently active.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
This route provides access to a Task's root record. The record contains taks metadata (such as parameters controlling it), details are available via sub-resources and sub-collections.
sid | ID of the service managing the task |
path | object | |
tid | ID of the task. |
path | object | |
embed | Embed sub-resources in the response.
|
query | object | |
force | Force status update from backend system. |
query | object |
OK. Task metadata is returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service does not exist or does not provide tasks, or the given task uuid was not found.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Does a partial update to the Task metadata. Given metadata replaces existing one, or is added to the record if not yet present. No metadata is deleted.
sid | ID of the service managing the task |
path | object | |
tid | ID of the task to update. |
path | object |
OK, task is updated and updated metadata returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service does not exist or does not provide tasks, or the given task UUID was not found.
Conflict, resource could not be updated. See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
A put call to the task root record completely replaces task metadata, but does not affect sub-resources or sub-collections.
sid | ID of the service managing the task |
path | object | |
tid | ID of the task to update. |
path | object |
OK, task updated and returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service does not exist or does not provide tasks, or the given task uuid was not found.
Conflict, resource could not be updated. See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Trigger a new action on the task. Currently supported
actions are start
, abort
, pause
and resume
.
sid | ID of the service. |
path | object | |
tid | ID of the task. |
path | object |
OK, action started.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service does not exist or does not provide tasks, the given task UUID was not found or actions are not available on this task.
Conflict, action could not be triggered. See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
This route provides access to a Task's list of input documents. Input lists of tasks are structure-wise identical with lists in general, they differ in that they are task-internal and hence not available via the /lists route. Input lists can have list-level metadata, and each list item can have metadata as well. A call to this route will provide the list-level metadata and an inventory of the collection. Access input list items via the 'items' sub-collection. Use the 'embed' parameter to include item metadata in the result.
sid | ID of the service managing the task |
path | object | |
tid | ID of the task. |
path | object | |
embed | Use 'embed' to include sub-collection metadata in the result.
|
query | object |
OK, collection of input list items returned
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service does not exist or does not provide tasks, the given task uuid was not found or the task has no input list.
Intenral Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Does a partial update to the input list metadata. Given metadata replaces existing one, or is added to the record if not yet present. No metadata is deleted.
sid | ID of the service managing the task |
path | object | |
tid | ID of the task to update. |
path | object | |
embed | Use 'embed' to include sub-collection metadata for updating.
|
query | object |
OK, input list updated and returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service does not exist or does not provide tasks, the given task UUID was not found or the task has no input list.
Conflict, resource could not be updated. See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Creates a new entry in the given task's input list. Given metadata is assigned to the new list item.
sid | ID of the service managing the task |
path | object | |
tid | ID of the task. |
path | object | |
href | URL of the document to add. This is a convenient way of adding a document without constructing a list item first. |
query | object |
OK, task input list item created, item data returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service does not exist or does not provide tasks, the given task UUID was not found or the task has no input list.
Conflict, resource could not be updated. See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
A PUT call to the input list root record completely replaces the list metadata but does not affect any list items.
sid | ID of the service managing the task |
path | object | |
tid | ID of the task to update. |
path | object |
OK, input list updated and returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service does not exist or does not provide tasks, the given task UUID was not found or the task has no input list.
Conflict, resource could not be updated. See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Deletes an item from a task's input list. The deleted ID is permanently orphaned, other list items keep their IDs.
sid | ID of the service managing the task |
path | object | |
tid | ID of the task. |
path | object | |
id | ID of the input list item to delete |
path | object |
OK, input list item deleted.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service does not exist or does not provide tasks, the given task UUID was not found or the task has no input list, or just the given list item UUID was not found.
Conflict, resource could not be deleted. See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
A GET call to this route returns input list item metadata.
sid | ID of the service managing the task |
path | object | |
tid | ID of the task. |
path | object | |
id | ID of the input list item |
path | object |
OK, input list item data returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service does not exist or does not provide tasks, the given task uuid was not found or the task has no input list, or just the given list item uuid was not found.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Updates task input list item metadata, replacing present entries and adding missing ones. No metadata is deleted by the patch.
sid | ID of the service managing the task |
path | object | |
tid | ID of the task. |
path | object | |
id | ID of the task input list item to update |
path | object |
OK, task input list item updated. Item data returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service does not exist or does not provide tasks, the given task UUID was not found or the task has no input list, or just the given list item UUID was not found.
Conflict, resource could not be updated. See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Replaces the task input list item's metadata, including the document reference.
sid | ID of the service managing the task |
path | object | |
tid | ID of the task. |
path | object | |
id | ID of the input list item |
path | object |
OK, list item updated. Item data returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service does not exist or does not provide tasks, the given task UUID was not found or the task has no input list, or just the given list item UUID was not found.
Conflict, resource could not be updated. See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
This route provides access to a task's list of output documents. Output lists of tasks have the same structure as lists in general, they differ in that they are task-internal and hence not available via the /lists route. Output lists can have list-level metadata, and each list item can have metadata as well. A call to this route will provide the list-level metadata and an inventory of the collection. Access output list items via the 'items' sub-collection. Use the 'embed' parameter to include item metadata in the result.
sid | ID of the service managing the task |
path | object | |
tid | ID of the task. |
path | object | |
embed | Use 'embed' to include sub-collection metadata in the result.
|
query | object |
OK, collection of output list items returned
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service does not exist or does not provide tasks, the given task UUID was not found or the task has no output list.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
This route provides access to individual task output items.
sid | ID of the service managing the task |
path | object | |
tid | ID of the task. |
path | object | |
id | ID of the output list item |
path | object |
OK, output list item data returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Service does not exist or does not provide tasks, the given task uuid was not found or the task has no output list, or just the given list item uuid was not found.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Retrieve number of open sessions of the current user
OK, return object with session information
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the service list.
No sessions available.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
This route provides access to the root collection of known tasks for all services supporting tasks. Use property names and regular expressions in URL query string to search for tasks, e. g. 'metadata.creationDay' to search for the property 'creationDay' stored in the task metadata. Use the 'embed' parameter to include information about instances and sub-ressources. Use the 'inputDocument' parameter to search for a task containing a given document, and use 'inlineCount' to get the number of found tasks.
inputDocument | A document UUID to look for in the input lists of all tasks. |
query | object | |
embed | Information about sub-collections and/or sub-resources to include in the response.
|
query | object | |
inlineCount | Return a JSON object containing the number of tasks found, according to the query parameters, instead of an array with tasks. |
query | object |
OK, collection of tasks or count is returned. Example for count:
{
count: 0
}
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
No (matching) tasks found
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
Resolve input document href and return content as octet-stream.
tid | ID of the task. |
path | object | |
id | ID of the task input list item to retrieve |
path | object |
OK, content is returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to read the binary content.
Not found. Either no entry was found under the given 'uuid', or the entry is not a document, or the document has no binary content (yet). See error message for details.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
The SEAL Operator user interface provides the user with a set of default panels to use. A GET call to this route returns a list of panels available to the current user. Default panels cannot be edited or deleted.
OK, list of UI panel configurations returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |
A GET call to this route returns a JSON object containing the default configuration of the panel.
pid | path | object |
OK, panel configuration is returned.
Unauthorized (Auth token invalid)
Forbidden. The user lacks rights to access the data.
The panel with the given ID was not found.
Internal Application Error
Unexpected error. Please report a bug and include error details.
oauth | authN |