POST /api-web/api/admin/dms/catalogs/{qname}

As of Version

product version 2021 Summer | component version 

Request MethodPOST
Response FormatJSON
Description

Updates the tenant-specific catalog specified by its technical name with the data passed in the request body in JSON format.

If no tenant-specific catalog with the specified technical name is available, it will be created.

The response body is a JSON structure with the list errors containing possibly occured error messages, and the boolean valid that is true for a successfully validated JSON in the request body.

The role YUUVIS_TENANT_ADMIN is required.

Response HTTP status codes:

HTTP Status CodeMeaning
200 OK
201 OK
400 Bad Request
401 Unauthorized
403 Forbidden
Request Example

https://<host>/api-web/api/admin/dms/catalogs/tenMytenant:processstatus

request body
{
  "tenant": "mytenant",
  "readonly": false,
  "entries": [
    {
      "name": "Work on draft",
      "disabled": false
    },
    {
      "name": "Review draft",
      "disabled": false
    }
  ]
}
Response Example

200 OK

request body
{
  "errors": [],
  "valid": true
}
 true
}