List

List

List all workflow execution instances

Request
URI
GET
https://{api_host}/tca/workflows/api/v1/orgs/{tenantIdWorkflowExecution}/workflowExecution
COPY
Path Parameters
string
tenantIdWorkflowExecution
Required

The identifier of the tenant

Query Parameters
string
nextpage_opaque_marker
Optional

May contain page_number=, page_size=, sort=,<asc/desc>

string
filter
Optional

The filter for listing

Header Parameters
boolean
x-tca-anymatch
Optional

If false, then the filter expressions are taken in logical AND relation, otherwise OR


Responses
200

List of workflow executions

Returns Array of workflowExecution of type(s) application/json
[
    {
        "pauseAtFailure": false,
        "retainedTil": "string",
        "debugStepIds": [
            "string"
        ],
        "contextType": "string",
        "workflow": {
            "id": "string",
            "createdAt": "string",
            "creationUser": "string",
            "creationTenantId": "string"
        },
        "id": "string",
        "creationTime": "string",
        "aborted": false,
        "endTime": "string",
        "creationUser": "string",
        "stepExecutions": [
            {
                "stepSnapshot": {
                    "id": "string"
                },
                "state": "string",
                "startTime": "string",
                "aborted": false,
                "endTime": "string",
                "logs": [
                    {
                        "msg": "string",
                        "time": "string",
                        "level": "string"
                    }
                ]
            }
        ],
        "logs": [
            {
                "msg": "string",
                "time": "string",
                "level": "string"
            }
        ]
    }
]

Response Headers

string
Link

undefined

integer
TotalRowCount

undefined


400

Bad Request

Returns errorResponse of type(s) application/json
{
    "errors": [
        {
            "code": "string",
            "message": "string"
        }
    ]
}
array of error
errors
Optional

errors


401

Unauthorized

Operation doesn't return any data structure

403

Forbidden

Returns errorResponse of type(s) application/json
{
    "errors": [
        {
            "code": "string",
            "message": "string"
        }
    ]
}
array of error
errors
Optional

errors


404

Workflow not found

Returns errorResponse of type(s) application/json
{
    "errors": [
        {
            "code": "string",
            "message": "string"
        }
    ]
}
array of error
errors
Optional

errors


500

Internal Server Error

Returns errorResponse of type(s) application/json
{
    "errors": [
        {
            "code": "string",
            "message": "string"
        }
    ]
}
array of error
errors
Optional

errors