Skip to main content
POST
POST /v1/containers

Create a Container

Create a new container within a storage service.

Body Parameters

string
required
Name of the container. Must be unique within the parent storage service or parent container.
string
required
Fully qualified name of the parent StorageService (e.g., s3_datalake).
string
Human-readable display name for the container.
string
Description of the container in Markdown format.
object
Reference to a parent container for nested containers.
string
Path prefix for objects in the container (e.g., /raw/events/).
number
Number of objects stored in the container.
number
Total size of the container in bytes.
array
List of file formats stored in the container (e.g., csv, tsv, parquet, avro, json, jsonl, jsonGz, jsonZip).
object
Data model describing the schema of files in the container.
string
Full path of the container (e.g., s3://analytics-bucket/raw/events).
array
Array of owner references (users or teams) to assign to the container.
string
Fully qualified name of the domain to assign for governance purposes.
array
Array of classification tags to apply to the container.
object
Custom property values defined by your organization’s metadata schema.
POST /v1/containers

Returns

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

Response

string
Unique identifier for the container (UUID format).
string
Container name.
string
Fully qualified name in format service.containerName.
string
Human-readable display name.
string
Description of the container in Markdown format.
object
Reference to the parent storage service.
string
Type of storage service (e.g., S3, GCS, ADLS, CustomStorage).
string
Path prefix for objects in the container.
number
Number of objects stored in the container.
number
Total size of the container in bytes.
array
List of file formats stored in the container.
object
Data model describing the schema of files.
string
Full path of the container.
array
List of owners assigned to the container.
array
Domain assignments for governance.
array
Classification tags applied to the container.
object
Custom property values defined by your organization’s metadata schema.
number
Version number for the entity (starts at 0.1).

Create or Update (PUT)

Use PUT /v1/containers instead of POST to perform an upsert. If a container with the same fullyQualifiedName already exists, it will be updated; otherwise, a new container 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. However, for certain fields (such as description, tags, owners, and custom properties), PUT preserves an already-populated value instead of overwriting it with an empty or omitted one — the exact behavior depends on the field and the calling user or bot’s permissions, not a blanket rule. See Entity Update Behavior for the full preserve/merge rules. Use PATCH to intentionally replace an existing value.

Bulk Create or Update (PUT)

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

Error Handling