Get All Tasks For Workflow

Get All Tasks For Workflow

Retrieves all scheduled tasks for a requested workflow.

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

workflowId


Authentication
This operation uses the following authentication methods.
Responses
200

The request is successful

Returns WsTaskList 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


400

The request is invalid(validation error)

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

relations

string
href
Optional

href


401

The user is not authorized

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

relations

string
href
Optional

href


404

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

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

relations

string
href
Optional

href


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