Skip to main content
POST
POST /v1/services/databaseServices

Create a Database Service

Create a new database service connection to a platform such as Snowflake, BigQuery, or PostgreSQL.

Body Parameters

string
required
Name of the database service. Must be unique across all database services.
string
required
Type of database service (e.g., Snowflake, BigQuery, PostgreSQL, MySQL, Redshift, Databricks).
string
Description of the database service in Markdown format.
string
Human-readable display name for the database service.
object
Connection configuration specific to the service type.
array
Array of owner references (users or teams) to assign to the service.
string
Fully qualified name of the domain to assign for governance purposes.
array
Array of classification tags to apply to the database service.
POST /v1/services/databaseServices

Returns

Returns the created database service object with all specified properties and system-generated fields.

Response

string
Unique identifier for the database service (UUID format).
string
Database service name.
string
Fully qualified name of the service.
string
Human-readable display name.
string
Description of the database service in Markdown format.
string
Type of database service (e.g., Snowflake, BigQuery, PostgreSQL).
object
Connection configuration for the service.
array
List of owners assigned to the database service.
string
Fully qualified name of the assigned domain.
array
Classification tags applied to the database service.
number
Version number for the entity (starts at 0.1).

Create or Update (PUT)

Use PUT /v1/services/databaseServices instead of POST to perform an upsert. If a database service with the same fullyQualifiedName already exists, it will be updated; otherwise, a new service is created. The request body is the same as POST.
PUT will not return a 409 conflict error if the entity already exists — it will update the existing entity instead.

Bulk Create or Update (PUT)

Use PUT /v1/services/databaseServices/bulk to create or update multiple database services in a single request. The request body is an array of create request objects.

Error Handling