Workflows Service, gRPC: ExecutionService.List
Retrieves list of Workflow executions.
gRPC request
rpc List (ListExecutionsRequest) returns (ListExecutionsResponse)
ListExecutionsRequest
{
"workflow_id": "string",
"page_size": "int64",
"page_token": "string",
"filter": "string"
}
Field |
Description |
workflow_id |
string Required field. ID of the Workflow. |
page_size |
int64 The maximum number of results per page that should be returned. If the number of available Default value: 100. |
page_token |
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:
|
ListExecutionsResponse
{
"executions": [
{
"id": "string",
"workflow_id": "string",
"status": "Status",
"started_at": "google.protobuf.Timestamp",
"duration": "google.protobuf.Duration"
}
],
"next_page_token": "string"
}
Field |
Description |
executions[] |
List of Workflow executions. |
next_page_token |
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. |
workflow_id |
string ID of the Workflow. |
status |
enum Status Status of the Workflow execution
|
started_at |
Start timestamp for the Workflow execution. |
duration |
Duration of the Workflow execution. |