Skip to content

In-flight uploads for the caller's account

GET
/v1/datasets/uploads
curl --request GET \
--url https://example.com/v1/datasets/uploads

Advisory 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.

x-api-key
string | null

Successful Response

Media type application/json
UploadOperationsResponse
object
uploads
required
Array<object>
UploadOperationModel
object
repo_id
required
string
name
required
string
phase
required
string
Allowed values: staging publishing
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>
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": {}
}
]
}