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
« Previous
Version 3
Next »
As of Version | product version 2021 Summer | component version |
---|
Request Method | GET |
---|
Response Format | JSON |
---|
Description | Retrieves the catalog specified by its technical name of either global/app-specific or tenant-specific origin. Behind the technical name, add the query parameter ?global=false (?global=true ) for a tenant-specific (app-specific or global) catalog. The endpoint returns null , if no catalog with qname is available in the tenant-specific (app-specific or global) resource. The endpoint returns null if no catalog with qname was found in the global or tenant-specific (app-specific or global) resource. The role YUUVIS_TENANT_ADMIN is required. Response HTTP status codes: HTTP Status Code | Meaning |
---|
200 | OK | 400 | Bad Request | 401 | Unauthorized | 404 | Not found |
|
---|
Request Example | https://<host>/api-web/api/admin/dms/catalogs/appInvoice:type?global=true
no request body |
---|
Response Example | 200 OK
{
"readonly": false,
"entries": [
{
"name": "Private",
"disabled": false
},
{
"name": "Public",
"disabled": false
}
]
}
|
---|