All Products
Search
Document Center

Platform For AI:ListPipelineRunNodeOutputs

Last Updated:Sep 15, 2025

Queries the outputs of a pipeline node.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

Authorization information

The following table shows the authorization information corresponding to the API. The authorization information can be used in the Action policy element to grant a RAM user or RAM role the permissions to call this API operation. Description:

  • Operation: the value that you can use in the Action element to specify the operation on a resource.
  • Access level: the access level of each operation. The levels are read, write, and list.
  • Resource type: the type of the resource on which you can authorize the RAM user or the RAM role to perform the operation. Take note of the following items:
    • For mandatory resource types, indicate with a prefix of * .
    • If the permissions cannot be granted at the resource level, All Resources is used in the Resource type column of the operation.
  • Condition Key: the condition key that is defined by the cloud service.
  • Associated operation: other operations that the RAM user or the RAM role must have permissions to perform to complete the operation. To complete the operation, the RAM user or the RAM role must have the permissions to perform the associated operations.
OperationAccess levelResource typeCondition keyAssociated operation
paiflow:ListPipelineRunNodeOutputslist
*All Resources
*
    none
none

Request syntax

GET /api/v1/pipelineruns/{PipelineRunId}/nodes/{NodeId}/outputs HTTP/1.1

Request parameters

ParameterTypeRequiredDescriptionExample
PipelineRunIdstringYes

The ID of the pipeline job. You can call ListPipelineRuns to obtain the ID of the pipeline job.

flow-n06dn********rfc53
NodeIdstringYes

The ID of the pipeline node. You can call ListPipelineRuns to obtain the node ID.

node-n06dn********rfc53
DepthintegerYes

The depth at which information about the node is queried. If you set Depth to 2, the information about the node and all its child nodes at the next layer is returned.

2
NamestringNo

The name of the pipeline node.

myName
PageNumberintegerNo

The page number. Pages start from page 1.

1
PageSizeintegerNo

The number of entries per page.

20
SortBystringNo

The field used to sort the returned results. The following fields are supported:

  • Name
  • Type
  • GmtCreateTime
GmtCreateTime
OrderstringNo

The sorting order. This parameter must be used together with the SortBy parameter. Valid values:

  • DESC (default)
  • ASC
DESC
TypestringNo

The output type of the pipeline node.

  • Model
  • DataSet
  • Metrics
  • ModelEvaluation
DataSet
TokenIdstringNo

The ID of the shared pipeline job.

https://pai.console.alibabacloud.com/?regionId=cn-hangzhou&workspaceId=102******&mode=noSidebar#/paiflow/pipeline-runs/flow-6y7******?Token=eyJ0e******

Response parameters

ParameterTypeDescriptionExample
object

The response parameters.

RequestIdstring

The request ID.

473469C7-****-****-****-A3DC0DE3C83E
TotalCountlong

The total number of outputs for the pipeline node.

2
Outputsarray<object>

The outputs of the pipeline node.

Outputsobject

The output of the pipeline node.

Namestring

The name of the output for the pipeline node.

model_******
Typestring

The output type. Valid values:

  • Model
  • DataSet
  • Metrics
  • ModelEvaluation
Model
GmtCreateTimestring

The time when the output was created.

2021-01-30T12:51:33.028Z
Idstring

The output ID.

artifact-ty1xwv*******s8zf
NodeIdstring

The ID of the pipeline node to which the output belongs.

node-obpzu*******418grb7
ExpandedArtifactIndexlong

The expanded index number of the output, starting from 0.

0
ExpandableArtifactNamestring

The expandable name of the output.

inputArtifact
Infoobject

The output information.

{ "metadata": { "type": { "Model": { "locationType": "MaxComputeOfflineModel", "modelType": "OfflineModel" } } }
Producerstring

The output producer.

id-3d25-************-77856

Examples

Sample success responses

JSONformat

{
  "RequestId": "473469C7-****-****-****-A3DC0DE3C83E",
  "TotalCount": 2,
  "Outputs": [
    {
      "Name": "model_******",
      "Type": "Model",
      "GmtCreateTime": "2021-01-30T12:51:33.028Z",
      "Id": "artifact-ty1xwv*******s8zf",
      "NodeId": "node-obpzu*******418grb7",
      "ExpandedArtifactIndex": 0,
      "ExpandableArtifactName": "inputArtifact",
      "Info": {
        "test": "test",
        "test2": 1
      },
      "Producer": "id-3d25-************-77856"
    }
  ]
}

Error codes

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
2024-07-24The internal configuration of the API is changed, but the call is not affectedView Change Details
2023-12-21The request parameters of the API has changedView Change Details
2022-06-14Add OperationView Change Details