Get Workflow Execution Logs

Get Workflow Execution Logs

Provides information about each individual event that occurs when the workflow runs. This information includes a description of the event, the user who triggered it, the type and origin of the event, and the time and date when it occurred.

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

workflowId

string
executionId
Required

executionId


Responses
200

The request is successful

Returns logs of type(s) application/json
{
    "logs": [
        {
            "time-stamp": "string",
            "severity": "string",
            "long-description": "string",
            "short-description": "string",
            "user": "string"
        }
    ]
}
array of WsLog
logs
Optional

logs


401

The user is not authorized

Operation doesn't return any data structure

404

Can not 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