Skip to main content
POST
POST /v1/containers

Create a Container

Create a new container within a storage service.

Body Parameters

name
string
required
Name of the container. Must be unique within the parent storage service or parent container.
service
string
required
Fully qualified name of the parent StorageService (e.g., s3_datalake).
displayName
string
Human-readable display name for the container.
description
string
Description of the container in Markdown format.
parent
object
Reference to a parent container for nested containers.
prefix
string
Path prefix for objects in the container (e.g., /raw/events/).
numberOfObjects
number
Number of objects stored in the container.
size
number
Total size of the container in bytes.
fileFormats
array
List of file formats stored in the container (e.g., csv, tsv, parquet, avro, json, jsonl, jsonGz, jsonZip).
dataModel
object
Data model describing the schema of files in the container.
fullPath
string
Full path of the container (e.g., s3://analytics-bucket/raw/events).
owners
array
Array of owner references (users or teams) to assign to the container.
domain
string
Fully qualified name of the domain to assign for governance purposes.
tags
array
Array of classification tags to apply to the container.
extension
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

id
string
Unique identifier for the container (UUID format).
name
string
Container name.
fullyQualifiedName
string
Fully qualified name in format service.containerName.
displayName
string
Human-readable display name.
description
string
Description of the container in Markdown format.
service
object
Reference to the parent storage service.
serviceType
string
Type of storage service (e.g., S3, GCS, ADLS, CustomStorage).
prefix
string
Path prefix for objects in the container.
numberOfObjects
number
Number of objects stored in the container.
size
number
Total size of the container in bytes.
fileFormats
array
List of file formats stored in the container.
dataModel
object
Data model describing the schema of files.
fullPath
string
Full path of the container.
owners
array
List of owners assigned to the container.
domains
array
Domain assignments for governance.
tags
array
Classification tags applied to the container.
extension
object
Custom property values defined by your organization’s metadata schema.
version
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.

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