Get All Executions For

Get All Executions For

Retrieves all workflow runs for a given workflow and filters by current user's permissions.

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

workflowId

Query Parameters
integer
maxResult
Optional
Constraints: default: 2147483647

maxResult

integer
startIndex
Optional
Constraints: default: 0

startIndex

string of array
keys
Optional

keys

string of array
conditions
Optional

conditions

string of array
sortOrders
Optional

sortOrders


Authentication
This operation uses the following authentication methods.
Responses
200

The request is successful

Returns PresentationExecutionsList of type(s) application/json
{
    "relations": {
        "startIndex": 0,
        "count": 0,
        "total": 0,
        "link": [
            {
                "rel": "string",
                "type": "string",
                "attributes": [
                    {
                        "name": "string",
                        "displayName": "string",
                        "value": "string",
                        "displayValue": "string"
                    }
                ],
                "href": "string"
            }
        ]
    },
    "href": "string"
}
object
relations
Optional

relations

string
href
Optional

href


401

The user is not authorized

Returns PresentationExecutionsList of type(s) application/json
"PresentationExecutionsList Object"
object
relations
Optional

relations

string
href
Optional

href


404

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

Returns PresentationExecutionsList of type(s) application/json
"PresentationExecutionsList Object"
object
relations
Optional

relations

string
href
Optional

href


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