Versions Compared

Key

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

...

As of Version

product version 2021 Summer | component version 

Request MethodPOST
Response FormatHTTP status codeJSON
Description


Excerpt

Retrieves the 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.

Response HTTP status codes:

HTTP Status CodeMeaning
200 200 OKSuccessful.
201 201 OK
Successful.400 400 Bad requestNot successful.
401 401 Unauthorized
Not successful.403 403 ForbiddenNot successful.


Request Example

https://<host>/api-web/api/dms/catalogs/entriescontracts

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


Response Example

200 OK

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