Xeonr Developer Docs

MintBlobOutputUpload

POST
/uplim.api.v1.InternalPipelineRunsService/MintBlobOutputUpload

-------- Step output mint + commit -------- Two-phase blob output: mint a presigned PUT URL, the side-car PUTs, then Finalise verifies + writes the UploadMetadata row.

AuthorizationBearer <token>

JWT access token obtained via OAuth2 flow or service account

In: header

Header Parameters

Connect-Protocol-Version*number

Define the version of the Connect protocol

Value in1
Connect-Timeout-Ms?number

Define the timeout, in ms

Request Body

application/json

runId?string
Formatuuid
stepId?string
outputName?string

Name declared in StepManifest.outputs.blobs (e.g. "common:thumbnail_light").

mime?string
sizeBytes?integer|string
Formatint64
filename?string

Optional per-file key for multi-file outputs (e.g. "common:archive_file" emits one entry per archive member, keyed by path). Empty for the common single-blob case. The committed UploadMetadata row carries this as its filename, so the (upload, name, filename) tuple is unique — many files can share one output_name.

[key: string]?never

Response Body

application/json

application/json

curl -X POST "https://uploads-api.xeonr.io/uplim.api.v1.InternalPipelineRunsService/MintBlobOutputUpload" \  -H "Connect-Protocol-Version: 1" \  -H "Content-Type: application/json" \  -d '{}'
{
  "presignedPutUrl": "string",
  "uploadToken": "string",
  "objectKey": "string"
}
{
  "code": "not_found",
  "message": "string",
  "details": [
    {
      "type": "string",
      "value": "string",
      "debug": {}
    }
  ]
}