Skip to main content
PATCH
PATCH /v1/services/databaseServices/{id}

Update a Database Service

Update a database service’s properties using JSON Patch. Update the service by ID or by fully qualified name.

Update by ID

string
required
UUID of the database service to update.

Update by Name

Use PATCH /v1/services/databaseServices/name/{fqn} to update by fully qualified name.
string
required
Fully qualified name of the database service (e.g., snowflake_prod).

Body Parameters

Send an array of JSON Patch operation objects. Collate applies each operation in order.
string
required
Operation to perform. Use add, remove, replace, move, copy, or test.
string
required
JSON Pointer path to the property to update, such as /description or /connection/config/authType.
string
Source JSON Pointer path. Required for move and copy operations.
any
Value used by the operation. Required for add, replace, and test operations.
PATCH /v1/services/databaseServices/{id}

Returns

Returns the updated database service object with the new version number.

Response

string
Unique identifier for the database service (UUID format).
string
Database service name.
string
Fully qualified name of the service.
string
Updated description.
number
Incremented version number.

Error Handling