Versions Compared

Key

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


Page Properties
hiddentrue
idDONE

Product Version
Report Note
Assignee

Resources & Remarks

Modification History

NameDateProduct VersionAction
Antje19 MAY 20212021 SummerPage created.


...

As of Version

product version 2021 Summer | component version 

Request MethodPOST
Required Permission

Available if listed in authorization.accesses in authentication-prod.yml and the specified access condition is matched. In the default configuration, access is granted for any logged-in user.

>> AUTHENTICATION Service
Response FormatJSON
Description


Excerpt

Updates the tenant-specific catalog specified by its technical name qname 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 role YUUVIS_MANAGE_SETTINGS 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/dms/catalogs/contracts

Code Block
languageyml
{
  "tenant": "mytenant",
  "readonly": false,
  "entries": [
    {
      "name": "Employment contract",
      "disabled": false
    },
    {
      "name": "Rental agreement",
      "disabled": false
    },
    {
      "name": "User contract",
      "disabled": false
    },
    {
      "name": "Purchase contract",
      "disabled": true
    }
  ]
}


Response Example

200 OK

Code Block
languageyml
titleresponse body
{
  "errors": [],
  "valid": true
}


...