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 5
Next »
As of Version | product version 2021 Summer | component version |
---|
Request Method | GET |
---|
Response Format | JSON |
---|
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 via the YUUVIS_SYSTEM_INTEGRATOR role. >> AUTHENTICATION Service |
---|
Description | Retrieves the global or app-specific catalog specified by its name qname The endpoint returns null if no catalog with qname was found in both global and app-specific resource. Response HTTP status codes: HTTP Status Code | Meaning |
---|
200 | OK | 401 | Unauthorized | 404 | Not found |
|
---|
Request Example | https://<host>/api-web/api/system/dms/catalogs/appInvoice:type
No request body |
---|
Response Example | 200 OK
{
"readonly": false,
"entries": [
{
"name": "Private",
"disabled": false
},
{
"name": "Public",
"disabled": false
}
]
}
|
---|