Skip to content

Base version chunk list

POST
/v1/datasets/upload/get-manifest
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.

x-api-key
string | null
Media type application/json
GetManifestBody
object
name
required
string
file_id
required
string
Example generated
{
"name": "example",
"file_id": "example"
}

Successful Response

Media type application/json
Example generated
example

Validation Error

Media type application/json
HTTPValidationError
object
detail
Array<object>
ValidationError
object
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": {}
}
]
}