PUT
/
v1
/
buckets
/
{bucket_identifier}
curl --request PUT \
  --url https://api.mixpeek.com/v1/buckets/{bucket_identifier} \
  --header 'Content-Type: application/json' \
  --data '{
  "bucket_name": "<string>",
  "description": "<string>",
  "metadata": {}
}'
{
  "bucket_id": "<string>",
  "bucket_name": "<string>",
  "description": "<string>",
  "bucket_schema": {
    "properties": {}
  },
  "metadata": {},
  "object_count": 123,
  "total_size_bytes": 123
}

Headers

Authorization
string | null

Bearer token authentication using your API key. Format: 'Bearer your_api_key'. To get an API key, create an account at mixpeek.com/start and generate a key in your account settings. Example: 'Bearer sk_1234567890abcdef'

X-Namespace
string | null

Optional namespace for data isolation. This can be a namespace name or namespace ID. Example: 'netflix_prod' or 'ns_1234567890'. To create a namespace, use the /namespaces endpoint.

Path Parameters

bucket_identifier
string
required

Body

application/json

Request model for updating an existing bucket

bucket_name
string | null

Human-readable name for the bucket

description
string | null

Description of the bucket

metadata
object | null

Additional metadata for the bucket

Response

200
application/json
Successful Response

Response model for bucket operations

bucket_name
string
required

Human-readable name for the bucket

bucket_schema
object
required

Schema definition for objects in this bucket

object_count
integer
required

Number of objects in the bucket

total_size_bytes
integer
required

Total size of all objects in the bucket in bytes

bucket_id
string

Unique identifier for the bucket

description
string | null

Description of the bucket

metadata
object

Additional metadata for the bucket