跳转到主要内容
GET
/
base
/
{baseId}
/
workflow
/
{workflowId}
/
run
/
{runId}
cURL
curl --request GET \
  --url http://127.0.0.1:3000/api/base/{baseId}/workflow/{workflowId}/run/{runId} \
  --header 'Authorization: Bearer <token>'
[
  {
    "createdTime": "<string>",
    "id": "<string>",
    "status": "success",
    "nodeId": "<string>",
    "nodeType": "<string>",
    "nodeCategory": "<string>",
    "spent": 123,
    "inputRaw": "<unknown>",
    "outputRaw": "<unknown>",
    "inputVariables": {},
    "outputVariables": {},
    "errorMsg": "<string>",
    "nodeName": "<string>"
  }
]

授权

Authorization
string
header
必填

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

路径参数

baseId
string
必填
workflowId
string
必填
runId
string
必填

响应

200 - application/json

Successful response

createdTime
string
必填
id
string
必填

id of the step

status
enum<string>
必填
可用选项:
success,
failed,
running,
canceled,
pending
nodeId
string
必填

id of the node

nodeType
string
必填

type of the node

nodeCategory
string
必填

node category

spent
number

spent time

inputRaw
unknown
outputRaw
unknown
inputVariables
object

The variables snapshot when executed

outputVariables
object

The variables snapshot when executed

errorMsg
string
nodeName
string

node name

Last modified on December 10, 2025