Skip to main content
GET
/
workflow
/
{id}
/
input
Return the original input of a workflow (latest run)
curl --request GET \
  --url http://localhost:3001/workflow/{id}/input
{
  "workflowId": "<string>",
  "runId": "<string>",
  "input": "<unknown>"
}

Path Parameters

id
string
required

The id of workflow to retrieve the input

Response

The workflow input

workflowId
string
required

The workflow execution id

runId
string
required

The specific run id the input was read from

input
any
required

The first input argument the workflow was started with, null if unavailable