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/uploadsAdvisory pending-band feed (QUA-1482): repos with staging manifests or prepared publications for the authenticated account. Poll-friendly; the tenant comes exclusively from the caller’s verified identity.
Parameters
Section titled “ Parameters ”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
Example
{ "uploads": [ { "phase": "staging" } ]}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": {} } ]}