GET /v1/containers/{id}
Retrieve a Container
Get a container by ID or fully qualified name
GET
GET /v1/containers/{id}
Documentation Index
Fetch the complete documentation index at: https://openmetadata-codex-audit-docs-codebase-alignment.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Retrieve a Container
Get a single container by its unique ID or fully qualified name.Get by ID
UUID of the container to retrieve.
Comma-separated list of fields to include (e.g.,
owners,tags,followers,votes,extension,domains,dataModel,children,sourceHash).Include
all, deleted, or non-deleted entities.Get by Fully Qualified Name
UseGET /v1/containers/name/{fqn} to retrieve by fully qualified name.
Fully qualified name of the container (e.g.,
s3_datalake.analytics-bucket).Comma-separated list of fields to include:
owners, tags, followers, votes, extension, domains, dataModel, children, sourceHash.Include
all, deleted, or non-deleted entities.GET /v1/containers/{id}
Returns
Returns a container object with all requested fields populated.Response
Unique identifier for the container (UUID format).
Container name.
Fully qualified name in format
service.containerName.Human-readable display name.
Description of the container in Markdown format.
Reference to the parent storage service.
Type of storage service (e.g., S3, GCS, ADLS, CustomStorage).
Data model with column definitions. Only included when
fields contains dataModel.Nested child containers. Only included when
fields contains children.Version number for the entity.
List of owners. Only included when
fields contains owners.Classification tags. Only included when
fields contains tags.Domain assignments. Only included when
fields contains domains.Error Handling
| Code | Error Type | Description |
|---|---|---|
401 | UNAUTHORIZED | Invalid or missing authentication token |
403 | FORBIDDEN | User lacks permission to view this container |
404 | NOT_FOUND | Container with given ID or FQN does not exist |