Yandex Cloud
Search
Contact UsGet started
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • AI for business
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
© 2025 Direct Cursus Technology L.L.C.
Yandex Serverless Integrations
  • Comparison with other Yandex Cloud services
  • Pricing policy
  • Terraform reference
    • API authentication
      • Overview
        • Overview
        • Start
        • Stop
        • Terminate
        • Get
        • GetHistory
        • List
  • Monitoring metrics
  • Public materials
  • Release notes

In this article:

  • gRPC request
  • ListExecutionsRequest
  • ListExecutionsResponse
  • ExecutionPreview
  1. Workflows API reference
  2. gRPC
  3. Execution
  4. List

Workflows Service, gRPC: ExecutionService.List

Written by
Yandex Cloud
Updated at November 26, 2024
  • gRPC request
  • ListExecutionsRequest
  • ListExecutionsResponse
  • ExecutionPreview

Retrieves list of Workflow executions.

gRPC requestgRPC request

rpc List (ListExecutionsRequest) returns (ListExecutionsResponse)

ListExecutionsRequestListExecutionsRequest

{
  "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
results is larger than pageSize, the service returns a ListExecutionsResponse.next_page_token
that can be used to get the next page of results in subsequent list requests.

Default value: 100.

page_token

string

Page token. To get the next page of results, set pageToken to the
ListExecutionsResponse.next_page_token returned by a previous list request.

filter

string

A filter expression that filters resources listed in the response.

The expression must specify:

  1. The field name. Currently filtering can be applied to the following fields: status, started_at, finished_at.
  2. Operator: =, < or >.
  3. The value. Must be sting and match the regular expression [+:\.-a-z0-9].
    Examples of a filter: status=ERROR, created_by=John.Doe.

ListExecutionsResponseListExecutionsResponse

{
  "executions": [
    {
      "id": "string",
      "workflow_id": "string",
      "status": "Status",
      "started_at": "google.protobuf.Timestamp",
      "duration": "google.protobuf.Duration"
    }
  ],
  "next_page_token": "string"
}

Field

Description

executions[]

ExecutionPreview

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
the specified ListExecutionsRequest.page_size, use next_page_token as the value
for the ListExecutionsRequest.page_token parameter in the next list request.

Each subsequent page will have its own next_page_token to continue paging through the results.

ExecutionPreviewExecutionPreview

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

  • STATUS_UNSPECIFIED
  • QUEUED: Workflow execution is being queued.
  • RUNNING: Workflow execution is running.
  • PAUSED: Workflow execution is being paused.
  • STOPPED: Workflow execution is stopped.
  • FAILED: Workflow execution is failed.
  • FINISHED: Workflow execution is finished.

started_at

google.protobuf.Timestamp

Start timestamp for the Workflow execution.

duration

google.protobuf.Duration

Duration of the Workflow execution.

Was the article helpful?

Previous
GetHistory
Next
Overview
© 2025 Direct Cursus Technology L.L.C.