Versions Compared

Key

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

...

As of Version

product version 2021 Winter | component version 

Request MethodPOST
Response FormatJSON
Required Permission

available if listed in authorization.accesses in authentication-prod.yml and the specified access condition is matched.

>> AUTHENTICATION Service
Description


Excerpt

Creates a global catalog stored via CATALOG service with the name specified in the JSON request body.


If a catalog with name already exists, an error is thrown.

Meaning of HTTP status codes:

HTTP status codeDescription
200Success.
409A catalog with specified name already exists.
422Unprocessible entity.


Request Header
Request Example

https://<host>/catalog/api/catalogs

Code Block
languageyml
{
    "objects": [
        {
            "properties": {
                "name": {
                    "value": "europeancountries"
                }
            }
        }
    ]
}


Response Example


Code Block
languageyml
{
    "objects": [
        {
            "properties": {
                "name": {
                    "value": "europeancountries"
                }
            }
        }
    ]
}


...