In-flight uploads for the caller's account
GET
/v1/datasets/uploads
const url = 'https://example.com/v1/datasets/uploads';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/v1/datasets/uploadsOne QDS-owned pending-band feed, including the SDK transfer heartbeat.
The tenant is either the caller’s bound account or a membership-verified interactive active-account override; no second service or client-side merge participates in the result.
Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” account_id
Scope to this account (the dashboard’s active account). Membership is verified before QDS reads its upload state.
string | null format: uuid
Scope to this account (the dashboard’s active account). Membership is verified before QDS reads its upload state.
Header Parameters
Section titled “Header Parameters ” x-api-key
string | null
Responses
Section titled “ Responses ”Successful Response
Media type application/json
UploadOperationsResponse
object
uploads
required
Array<object>
UploadOperationModelobject
repo_id
required
string
name
required
string
phase
required
string
staging_manifests
required
integer
staged_bytes
required
integer
logical_bytes
required
integer
updated_at_unix
required
integer
transferred_bytes
integer | null
total_files
integer | null
staged_files
integer | null
message
string
progress
object
key
additional properties
any
phase_history
object
key
additional properties
any
ingest_report
object
key
additional properties
any
Example
{ "uploads": [ { "message": "" } ]}Validation 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": {} } ]}