Get All Workflow Executions

Get All Workflow Executions

Retrieves all workflow runs for a given workflow

Request
URI
GET
https://{api_host}/cloudapi/workflows/{workflowId}/executions
COPY
Path Parameters
string
workflowId
Required

workflowId


Authentication
This operation uses the following authentication methods.
Responses
200

Workflow executions successfully retrieved

Returns PresentationExecutionsList of type(s) application/json;version=39.1
{
    "total": 0,
    "executions": [
        {
            "id": "string",
            "name": "string",
            "startDate": "string",
            "endDate": "string",
            "startedBy": "string",
            "state": "string"
        }
    ],
    "start": 0
}
integer As int32 As int32
total
Optional

total

array of object
executions
Optional

Definition of ExecutionSummary.

integer As int32 As int32
start
Optional

start


401

The user is not authorized to retrieve workflow executions

Operation doesn't return any data structure

403

Forbidden

Operation doesn't return any data structure

404

Cannot find a workflow with the specified ID or the user does not have 'read' access rights for that workflow

Operation doesn't return any data structure

Code Samples
COPY
                    curl -H 'Authorization: <value>' https://{api_host}/cloudapi/workflows/{workflowId}/executions