Get All Workflow Presentation Instances

Get All Workflow Presentation Instances

Retrieves a list of the presentation instances for a workflow that you specify. To retrieve the list of workflow presentations, make an HTTP GET request at the workflow presentations list URL. The returned list contains all of the currently running workflow presentation instances, and all completed instances based on the data from the workflow executions. If the user has admin rights, all presentation instances for all users are returned.

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

workflowId


Authentication
This operation uses the following authentication methods.
Responses
200

The request is successful

Returns PresentationExecutionsList of type(s) application/json;version=37.0
{
    "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

executions
Optional

executions

integer As int32 As int32
start
Optional

start


401

The user is not authorized

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