Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

As of Version

product version 2021 Summer | component version 

Request MethodPOST
Response FormatJSON
Description

Adds an entry to the tenant-specific catalog identified by its name qname, with the data passed in JSON format in the request body.

In the response body, the modified catalog will be returned.

If no tenant-specific catalog with name qname is available, an error will be thrown.

The role YUUVIS_TENANT_ADMIN is required.

Response HTTP status codes:

HTTP Status CodeMeaning
200 OKSuccessful.
401 UnauthorizedNot successful.
403 ForbiddenNot successful.
404 Not FoundNot successful.
500 Internal Server ErrorNot successful.
Request Example

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

request body that will not apply any changes to the catalog 'entries'
{}
Response Example

200 OK

{
	"entries": [
		{
			"disabled": true,
			"name": "string"
		}
	],
	"readonly": true,
	"tenant": "string"
}
true }
  • No labels