ListAvailableSteps
Lists step registry entries the calling integration can reference. Proxies upl-im-steps.ListSteps so the visual builder's step picker works without a direct upl-im-steps client in the UI. Filters to private-per-integration scope (the same private list the picker sees today via direct registry calls).
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 in
1Connect-Timeout-Ms?number
Define the timeout, in ms
Request Body
application/json
integrationId?string
Format
uuidkind?string
Optional filter to a single step kind. Empty = all kinds.
Value in
"PIPELINE_STEP_KIND_UNSPECIFIED" | "PIPELINE_STEP_KIND_JS" | "PIPELINE_STEP_KIND_PUPPETEER" | "PIPELINE_STEP_KIND_FFMPEG" | "PIPELINE_STEP_KIND_PROBE" | "PIPELINE_STEP_KIND_IMAGE_CONVERT" | "PIPELINE_STEP_KIND_PIPELINE" | "PIPELINE_STEP_KIND_BUILTIN" | "PIPELINE_STEP_KIND_OFFICE" | "PIPELINE_STEP_KIND_EXEC"resourceKind?string
Optional resource kind filter — only steps whose manifest
kinds includes this kind appear. UI passes the pipeline's
resource kind so the picker hides incompatible steps.
Value in
"PIPELINE_RESOURCE_KIND_UNSPECIFIED" | "PIPELINE_RESOURCE_KIND_UPLOAD" | "PIPELINE_RESOURCE_KIND_FOLDER" | "PIPELINE_RESOURCE_KIND_VIRTUAL_FILE" | "PIPELINE_RESOURCE_KIND_INTEGRATION_FOLDER"[key: string]?never
Response Body
application/json
application/json
curl -X POST "https://uploads-api.xeonr.io/uplim.api.v1.PipelineAdminService/ListAvailableSteps" \ -H "Connect-Protocol-Version: 1" \ -H "Content-Type: application/json" \ -d '{}'{
"steps": [
{
"name": "string",
"latestVersion": "string",
"kind": "PIPELINE_STEP_KIND_UNSPECIFIED",
"summary": "string",
"latestReady": true,
"latestValidationStatus": "STEP_VALIDATION_STATUS_UNSPECIFIED",
"origin": "STEP_ORIGIN_UNSPECIFIED"
}
]
}{
"code": "not_found",
"message": "string",
"details": [
{
"type": "string",
"value": "string",
"debug": {}
}
]
}