Skip to main content
GET
https://sandbox.getcollate.io/api
/
v1
/
containers
/
{id}
/
versions
GET /v1/containers/{id}/versions
from metadata.sdk import configure
from metadata.sdk.entities import Containers

configure(
    host="https://your-company.getcollate.io/api",
    jwt_token="your-jwt-token"
)

# List all versions
versions = Containers.get_versions("14744329-85c2-499e-b1fa-249fb8162341")
for v in versions:
    print(f"Version {v.version}: {v.description}")

# Get a specific version
container_v1 = Containers.get_specific_version(
    "14744329-85c2-499e-b1fa-249fb8162341",
    "0.1"
)
print(f"Original description: {container_v1.description}")
{
  "entityType": "container",
  "versions": [
    "{\"id\":\"14744329-85c2-499e-b1fa-249fb8162341\",\"name\":\"analytics-bucket\",\"fullyQualifiedName\":\"s3_datalake.analytics-bucket\",\"version\":0.2,\"description\":\"Updated: Primary analytics bucket with partitioned parquet data\",\"serviceType\":\"S3\"}",
    "{\"id\":\"14744329-85c2-499e-b1fa-249fb8162341\",\"name\":\"analytics-bucket\",\"fullyQualifiedName\":\"s3_datalake.analytics-bucket\",\"version\":0.1,\"description\":\"Primary analytics data lake bucket\",\"serviceType\":\"S3\"}"
  ]
}

Container Versions

Every change to a container entity creates a new version. Use these endpoints to view the version history and retrieve specific versions.

List Versions

id
string
required
UUID of the container.

Get Specific Version

Use GET /v1/containers/{id}/versions/{version} to retrieve a specific version.
id
string
required
UUID of the container.
version
string
required
Version number to retrieve (e.g., 0.2).
GET /v1/containers/{id}/versions
from metadata.sdk import configure
from metadata.sdk.entities import Containers

configure(
    host="https://your-company.getcollate.io/api",
    jwt_token="your-jwt-token"
)

# List all versions
versions = Containers.get_versions("14744329-85c2-499e-b1fa-249fb8162341")
for v in versions:
    print(f"Version {v.version}: {v.description}")

# Get a specific version
container_v1 = Containers.get_specific_version(
    "14744329-85c2-499e-b1fa-249fb8162341",
    "0.1"
)
print(f"Original description: {container_v1.description}")
{
  "entityType": "container",
  "versions": [
    "{\"id\":\"14744329-85c2-499e-b1fa-249fb8162341\",\"name\":\"analytics-bucket\",\"fullyQualifiedName\":\"s3_datalake.analytics-bucket\",\"version\":0.2,\"description\":\"Updated: Primary analytics bucket with partitioned parquet data\",\"serviceType\":\"S3\"}",
    "{\"id\":\"14744329-85c2-499e-b1fa-249fb8162341\",\"name\":\"analytics-bucket\",\"fullyQualifiedName\":\"s3_datalake.analytics-bucket\",\"version\":0.1,\"description\":\"Primary analytics data lake bucket\",\"serviceType\":\"S3\"}"
  ]
}

Returns

List versions returns an object with entityType and a versions array of serialized entity snapshots (newest first). Get specific version returns the full container object as it existed at that version.

Error Handling

CodeError TypeDescription
401UNAUTHORIZEDInvalid or missing authentication token
404NOT_FOUNDContainer or version does not exist