dms-controller Endpoints

Endpoints of the Web-API gateway for business process management, accessible for any authenticated user.

>> API-WEB Service

The endpoints are used by the CLIENT Service that provides yuuvis® client as reference implementation. Most of them internally call the core API.


HTTP Method
as of product version
PurposeResponse FormatDescription
GET
as of 2021 Summer
getCatalogJSON

Retrieves the catalog specified by its name qname.
/api-web/api/dms/catalogs/{qname}

POST
as of 2021 Summer
postCatalogJSON

Updates the tenant-specific catalog specified by its technical name qname with the data passed in the request body in JSON format.
/api-web/api/dms/catalogs/{qname}

PATCH
as of 2021 Summer
updateCatalogJSON

Updates the existing tenant-specific catalog identified by its name qname or creates a modified copy of an existing global catalog, with the data passed in JSON format in the request body.
/api-web/api/dms/catalogs/{qname}

GET
as of 2021 Summer
validateEntriesJSON

Checks if catalog entries are already in use. Returns an empty list, if no catolog enties are used.
/api-web/api/dms/catalogs/{qname}/validate

GET
as of 2020 Autumn
getFormJSON

Retrieves the default form for the object type specified by object type ID objecttype and optional query parameters situation and sots (secondary object types) for the active tenant.
/api-web/api/dms/forms/{objecttype}

POST
as of 2020 Autumn
createJSON

Creates a DMS object with the data passed in the multipart request body including the metadata in JSON structure and optionally a binary content file.
/api-web/api/dms/objects

GET
as of 2020 Autumn
getMetadataJSON

Retrieves the metadata of the DMS object specified by its object ID id.
/api-web/api/dms/objects/{id}

DELETE
as of 2020 Autumn
delete dms objectHTTP status code

Deletes the DMS object specified by its object ID id.
/api-web/api/dms/objects/{id}

PATCH
as of 2020 Autumn
updateJSON

Updates the existing DMS object specified by its object ID id with the data passed JSON format in the request body.
/api-web/api/dms/objects/{id}

GET
as of 2020 Autumn
getContentJSON

Retrieves the binary content file assigned to the object specified by its object ID id.
/api-web/api/dms/objects/{id}/contents/file

POST
as of 2020 Autumn
update content of dms objectJSON

Updates the binary content file assigned to the object specified by its object ID id with the file passed in the request body.
/api-web/api/dms/objects/{id}/contents/file

GET
as of 2020 Autumn
getAllVersionsJSON

Retrieves the metadata of all versions of the DMS object specified by its object ID id.
/api-web/api/dms/objects/{id}/versions

GET
as of 2020 Autumn
getMetadataJSON

Retrieves the metadata of the version version of the DMS object specified by its object ID id.
/api-web/api/dms/objects/{id}/versions/{version}

POST
as of 2020 Autumn
searchJSON

Retrieves a list of DMS objects matching the search query passed in the request body in JSON format.
/api-web/api/dms/objects/search