Xeonr Developer Docs

ListStepBlobOutputs

POST
/uplim.api.v1.InternalPipelineRunsService/ListStepBlobOutputs

Returns presigned GET URLs + mime + size for each blob a step recorded. Used by the dispatcher to resolve ${{ steps.<id>.outputs.blobs.<name> }} references in later steps. Two flavours:

  • committed blobs (UploadMetadata): from pipeline-runs// / in the storage bucket
  • local blobs (run-scoped scratch): from runs//locals/ / in the same bucket, 7d S3 lifecycle Returns both in one call so the dispatcher doesn't double-RPC.
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
[key: string]?never

Response Body

application/json

application/json

curl -X POST "https://uploads-api.xeonr.io/uplim.api.v1.InternalPipelineRunsService/ListStepBlobOutputs" \  -H "Connect-Protocol-Version: 1" \  -H "Content-Type: application/json" \  -d '{}'
{
  "blobs": [
    {
      "name": "string",
      "presignedGetUrl": "string",
      "mime": "string",
      "sizeBytes": 0,
      "expiresAt": "2023-01-15T01:30:15.01Z"
    }
  ],
  "localBlobs": [
    {
      "name": "string",
      "presignedGetUrl": "string",
      "mime": "string",
      "sizeBytes": 0,
      "expiresAt": "2023-01-15T01:30:15.01Z"
    }
  ]
}
{
  "code": "not_found",
  "message": "string",
  "details": [
    {
      "type": "string",
      "value": "string",
      "debug": {}
    }
  ]
}