Authorizations
Path Parameters
The heron ID of the end user
curl --request GET \
--url https://app.herondata.io/api/workflow/executions/end_user/{end_user_heron_id} \
--header 'x-api-key: <api-key>'
[
{
"created": "2023-11-07T05:31:56Z",
"heron_id": "<string>",
"started_at": "2023-11-07T05:31:56Z",
"status": "<string>",
"workflow_version_id": 123
}
]
Retrieve all WorkflowNodeExecution records for a given WorkflowExecution heron_id
curl --request GET \
--url https://app.herondata.io/api/workflow/executions/end_user/{end_user_heron_id} \
--header 'x-api-key: <api-key>'
[
{
"created": "2023-11-07T05:31:56Z",
"heron_id": "<string>",
"started_at": "2023-11-07T05:31:56Z",
"status": "<string>",
"workflow_version_id": 123
}
]
The heron ID of the end user
Was this page helpful?