Verify and publish staged R2 uploads
POST
/v1/datasets/upload/finalize-batch
const url = 'https://example.com/v1/datasets/upload/finalize-batch';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"uploads":[{"staging_id":"example","blob_id":"example","content_length":1}]}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/v1/datasets/upload/finalize-batch \ --header 'Content-Type: application/json' \ --data '{ "uploads": [ { "staging_id": "example", "blob_id": "example", "content_length": 1 } ] }'Promote verified staging objects before a manifest may reference them.
Scope is derived exclusively from the authenticated account. A client can present an opaque staging handle, but cannot finalize another tenant’s staging namespace or choose a publication scope.
Parameters
Section titled “ Parameters ”Header Parameters
Section titled “Header Parameters ” x-api-key
string | null
Request Body required
Section titled “Request Body required ” Media type application/json
FinalizeUploadBatchBody
object
uploads
required
Array<object>
StagedUploadBodyobject
staging_id
required
string
blob_id
required
string
content_length
required
integer
Example generated
{ "uploads": [ { "staging_id": "example", "blob_id": "example", "content_length": 1 } ]}Responses
Section titled “ Responses ”Successful Response
Media type application/json
Example generated
exampleValidation Error
Media type application/json
HTTPValidationError
object
detail
Array<object>
ValidationErrorobject
loc
required
Location
Array<string | integer>
msg
required
Message
string
type
required
Error Type
string
input
ctx
Context
object
Example generated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}