v5
OpenAPI 3.1.02026-08-025631,1012.8 MBBucket Batches
Bulk-submit a whole bucket as N auto-chunked, auto-queued batches
One call that streams the bucket's objects (paginated, de-duplicated), chunks them server-side into chunk_size-object batches, and submits each (accept-and-queue). Replaces the client-side chunk loop + cursor pacing — no 409 cursor-overlap, no 5k count-timeout, no manual 429 handling. Poll the returned batch ids / batch_group_id for QUEUED -> PROCESSING.
post/v1/buckets/{bucket_identifier}/batches/bulk-submit
Path parameters
bucket_identifierstring required
The bucket to ingest.
The bucket to ingest.
Request body
Example request
{
"filters": {
"AND": [
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
],
"OR": [
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
],
"NOT": [
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
],
"case_sensitive": true
}
}Response
Successful Response