Skip to main content
POST
/
api
/
metastore
/
catalogs
Create catalog
curl --request POST \
  --url https://aiapi.{client}.nx1cloud.com/api/metastore/catalogs \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "catalog": "<string>",
  "properties": {},
  "catalog_type": "<string>"
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
catalog
string
required

Name of the catalog to be created.

properties
Properties · object
required

Configuration properties for the catalog.

catalog_type
string
required

Type of catalog.

Response

Data retrieved successfully.

success
boolean
required

Indicates whether the task completed successfully.