Yandex Cloud
Поиск
Связаться с намиПодключиться
  • Истории успеха
  • Документация
  • Блог
  • Все сервисы
  • Статус работы сервисов
    • Доступны в регионе
    • Инфраструктура и сеть
    • Платформа данных
    • Контейнеры
    • Инструменты разработчика
    • Бессерверные вычисления
    • Безопасность
    • Мониторинг и управление ресурсами
    • ML Services
    • Бизнес-инструменты
  • Все решения
    • По отраслям
    • По типу задач
    • Экономика платформы
    • Безопасность
    • Техническая поддержка
    • Каталог партнёров
    • Обучение и сертификация
    • Облако для стартапов
    • Облако для крупного бизнеса
    • Центр технологий для общества
    • Партнёрская программа
    • Поддержка IT-бизнеса
    • Облако для фрилансеров
    • Обучение и сертификация
    • Блог
    • Документация
    • Мероприятия и вебинары
    • Контакты, чаты и сообщества
    • Идеи
    • Тарифы Yandex Cloud
    • Промоакции и free tier
    • Правила тарификации
  • Истории успеха
  • Документация
  • Блог
Проект Яндекса
© 2025 ТОО «Облачные Сервисы Казахстан»
Yandex Serverless Integrations
  • Сопоставление с другими сервисами Yandex Cloud
  • Правила тарификации
  • Справочник Terraform
    • Аутентификация в API
      • Overview
        • Overview
        • Start
        • Stop
        • Terminate
        • Get
        • GetHistory
        • List
  • Метрики Monitoring
  • Публичные материалы
  • История изменений

В этой статье:

  • HTTP request
  • Query parameters
  • Response
  • ExecutionPreview
  1. Справочник API Workflows
  2. REST (англ.)
  3. Execution
  4. List

Workflows Service, REST: Execution.List

Статья создана
Yandex Cloud
Обновлена 8 августа 2025 г.
  • HTTP request
  • Query parameters
  • Response
  • ExecutionPreview

Retrieves list of Workflow executions.

HTTP requestHTTP request

GET https://serverless-workflows.api.yandexcloud.kz/workflows/v1/execution

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

Default value: 100.

pageToken

string

Page token. To get the next page of results, set pageToken to the
ListExecutionsResponse.nextPageToken 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.

ResponseResponse

HTTP Code: 200 - OK

{
  "executions": [
    {
      "id": "string",
      "workflowId": "string",
      "status": "string",
      "startedAt": "string",
      "duration": "string"
    }
  ],
  "nextPageToken": "string"
}

Field

Description

executions[]

ExecutionPreview

List of Workflow executions.

nextPageToken

string

Token for getting the next page of the list. If the number of results is greater than
the specified ListExecutionsRequest.pageSize, use next_page_token as the value
for the ListExecutionsRequest.pageToken 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.

workflowId

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.

startedAt

string (date-time)

Start timestamp for the Workflow execution.

String in RFC3339 text format. The range of possible values is from
0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z, i.e. from 0 to 9 digits for fractions of a second.

To work with values in this field, use the APIs described in the
Protocol Buffers reference.
In some languages, built-in datetime utilities do not support nanosecond precision (9 digits).

duration

string (duration)

Duration of the Workflow execution.

Была ли статья полезна?

Предыдущая
GetHistory
Следующая
Overview
Проект Яндекса
© 2025 ТОО «Облачные Сервисы Казахстан»