Authorizations
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.
Headers
REQUIRED: Bearer token authentication using your API key. Format: 'Bearer sk_xxxxxxxxxxxxx'. You can create API keys in the Mixpeek dashboard under Organization Settings.
"Bearer sk_live_abc123def456"
"Bearer sk_test_xyz789"
REQUIRED: Namespace identifier for scoping this request. All resources (collections, buckets, taxonomies, etc.) are scoped to a namespace. You can provide either the namespace name or namespace ID. Format: ns_xxxxxxxxxxxxx (ID) or a custom name like 'my-namespace'
"ns_abc123def456"
"production"
"my-namespace"
Path Parameters
The unique identifier of the bucket
Body
Request to confirm multiple uploads in batch.
List of confirmations with upload_id, etag, file_size_bytes
1 - 100 elementsResponse
Successful Response
Response from batch confirmation.
Task ID for tracking batch confirmation progress
Task status
PENDING, IN_PROGRESS, PROCESSING, COMPLETED, FAILED, CANCELED, UNKNOWN, SKIPPED, DRAFT, ACTIVE, ARCHIVED, SUSPENDED Number of confirmations being processed
Full task details
{
"additional_data": {
"batch_id": "batch_xyz789",
"bucket_id": "bkt_products",
"job_id": "ray_job_123"
},
"description": "Batch processing task in progress",
"inputs": ["batch_xyz789"],
"status": "PROCESSING",
"task_id": "task_abc123def456",
"task_type": "api_buckets_batches_process"
}{
"additional_data": {
"cluster_id": "cl_abc123",
"job_id": "ray_job_456"
},
"description": "Completed clustering task with results",
"inputs": [
{
"collection_ids": ["col_products"],
"config": { "algorithm": "kmeans", "k": 5 }
}
],
"outputs": [
{
"cluster_id": "cl_abc123",
"num_clusters": 5,
"silhouette_score": 0.78
}
],
"status": "COMPLETED",
"task_id": "task_cluster_789",
"task_type": "engine_cluster_build"
}{
"additional_data": {
"bucket_id": "bkt_test",
"error": "Invalid file format: Expected PDF, got PNG",
"object_id": "obj_123"
},
"description": "Failed object creation task with error",
"inputs": [
{
"bucket_id": "bkt_test",
"object_id": "obj_123"
}
],
"status": "FAILED",
"task_id": "task_failed_123",
"task_type": "api_buckets_objects_create"
}{
"additional_data": {
"batch_id": "batch_old_123",
"from_mongodb": true,
"note": "Retrieved from persistent storage after 24hr Redis expiry"
},
"description": "Task retrieved from MongoDB fallback (Redis expired)",
"inputs": ["batch_old_123"],
"outputs": ["Processed 500 objects"],
"status": "COMPLETED",
"task_id": "task_old_789",
"task_type": "api_buckets_batches_process"
}Status message

