Base version chunk list
POST
/v1/datasets/upload/get-manifest
const url = 'https://example.com/v1/datasets/upload/get-manifest';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"name":"example","file_id":"example"}'};
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/get-manifest \ --header 'Content-Type: application/json' \ --data '{ "name": "example", "file_id": "example" }'The chunk list of a prior version (for client-side edit-delta). The file_id MUST belong to the caller’s own org — enforced by qds-api’s tenant-scope gate (404 on a foreign file_id), bound via (org, name) here. No tree pre-fetch: that was a full extra broker round-trip per call.
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
GetManifestBody
object
name
required
string
file_id
required
string
Example generated
{ "name": "example", "file_id": "example"}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": {} } ]}