Assets
Retrieve Asset
Returns the current ingest state for an asset. Clients poll this
endpoint after POST /v1/assets/{id}/complete until status is
ready or failed.
GET
Error
Authorizations
Personal Access Token, sent verbatim as pat_<32 chars>. PATs are
minted from the Chief settings UI.
Headers
Project identifier scoping the request. Required on every
project-scoped public endpoint. Missing or malformed values respond
with HTTP 400 and code publicapi.tenancy.project.missing.
Pattern:
^project_[a-z0-9]{20}$Path Parameters
Asset identifier returned by POST /v1/assets.
Pattern:
^asset_[a-z0-9]{20}$Response
Asset state.
Pattern:
^asset_[a-z0-9]{20}$Asset lifecycle. Progresses uploaded -> ingesting -> ready, or terminates at failed on any extraction error.
Available options:
uploaded, ingesting, ready, failed Previous
Update AssetPatches the asset's name and/or description. Both fields are
optional; omitting one leaves it unchanged. Only allowed once the
asset has reached `ready` — calls against an asset still ingesting or
failed respond with HTTP 400.
Next
Error