Get Workflow Execution

Get Workflow Execution

Retrieves a workflow run for a given workflow.

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

workflowId

string
executionId
Required

executionId


Authentication
This operation uses the following authentication methods.
Responses
200

Workflow execution successfully retrived

Returns WsWorkflowExecution of type(s) application/json;version=39.1
{
    "businessState": "string",
    "contentException": "string",
    "currentItemDisplayName": "string",
    "endDate": "string",
    "id": "string",
    "inputParameters": [
        {
            "description": "string",
            "encryptValue": false,
            "name": "string",
            "scope": "string",
            "type": "string",
            "updated": false,
            "value": {
                "inputType": "string"
            }
        }
    ],
    "name": "string",
    "outputParameters": [
        {
            "description": "string",
            "encryptValue": false,
            "name": "string",
            "scope": "string",
            "type": "string",
            "updated": false,
            "value": {
                "inputType": "string"
            }
        }
    ],
    "relations": {
        "total": 0,
        "link": [
            {
                "attributes": [
                    {
                        "displayValue": "string",
                        "name": "string",
                        "value": "string"
                    }
                ],
                "href": "string",
                "rel": "string",
                "type": "string",
                "name": "string"
            }
        ],
        "start": 0
    },
    "startDate": "string",
    "startedBy": "string",
    "state": "string"
}
string
businessState
Optional

businessState

string
contentException
Optional

contentException

string
currentItemDisplayName
Optional

currentItemDisplayName

string As date-time As date-time
endDate
Optional

endDate

string
id
Optional

id

array of object
inputParameters
Optional

Definition of WsParameter.

string
name
Optional

name

array of object
outputParameters
Optional

Definition of WsParameter.

object
relations
Optional

Definition of Relations.

string As date-time As date-time
startDate
Optional

startDate

string
startedBy
Optional

startedBy

string
state
Optional

state

Possible values are : canceled, completed, running, suspended, waiting, waiting-signal, failed, initializing,

400

The request is invalid(validation error)

Operation doesn't return any data structure

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

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