Workflows Service, REST: Execution.List
Retrieves list of Workflow executions.
HTTP request
GET https://serverless-workflows.api.cloud.yandex.net/workflows/v1/execution
Query parameters
Field |
Description |
workflowId |
string Required field. ID of the Workflow. |
pageSize |
string (int64) The maximum number of results per page that should be returned. If the number of available Default value: 100. |
pageToken |
string Page token. To get the next page of results, set |
filter |
string A filter expression that filters resources listed in the response. The expression must specify:
|
Response
HTTP Code: 200 - OK
{
"executions": [
{
"id": "string",
"workflowId": "string",
"status": "string",
"startedAt": "string",
"duration": "string"
}
],
"nextPageToken": "string"
}
Field |
Description |
executions[] |
List of Workflow executions. |
nextPageToken |
string Token for getting the next page of the list. If the number of results is greater than Each subsequent page will have its own |
ExecutionPreview
Field |
Description |
id |
string ID of the Workflow execution. Generated at creation time. |
workflowId |
string ID of the Workflow. |
status |
enum (Status) Status of the Workflow execution
|
startedAt |
string (date-time) Start timestamp for the Workflow execution. String in RFC3339 To work with values in this field, use the APIs described in the |
duration |
string (duration) Duration of the Workflow execution. |