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

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

  • HTTP request
  • Path parameters
  • Response
  • Execution
  • ExecutionInput
  • ExecutionResult
  • ExecutionError
  1. Справочник API Workflows
  2. REST (англ.)
  3. Execution
  4. Get

Workflows Service, REST: Execution.Get

Статья создана
Yandex Cloud
Обновлена 26 ноября 2024 г.
  • HTTP request
  • Path parameters
  • Response
  • Execution
  • ExecutionInput
  • ExecutionResult
  • ExecutionError

Retrieves specified Workflow execution.

HTTP requestHTTP request

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

Path parametersPath parameters

Field

Description

executionId

string

Required field. ID of the Workflow execution.

ResponseResponse

HTTP Code: 200 - OK

{
  "execution": {
    "id": "string",
    "workflowId": "string",
    "input": {
      // Includes only one of the fields `inputJson`
      "inputJson": "string"
      // end of the list of possible fields
    },
    "result": {
      // Includes only one of the fields `resultJson`
      "resultJson": "string"
      // end of the list of possible fields
    },
    "error": {
      "message": "string",
      "errorCode": "string"
    },
    "status": "string",
    "startedAt": "string",
    "duration": "string"
  }
}

Field

Description

execution

Execution

Workflow execution details.

ExecutionExecution

Field

Description

id

string

ID of the Workflow execution. Generated at creation time.

workflowId

string

ID of the Workflow.

input

ExecutionInput

Input data for the Workflow execution.

result

ExecutionResult

Result of the Workflow execution.

error

ExecutionError

Error details, in case Workflow execution failed.

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.

ExecutionInputExecutionInput

Field

Description

inputJson

string

JSON input data for the Workflow execution.

Includes only one of the fields inputJson.

ExecutionResultExecutionResult

Field

Description

resultJson

string

JSON result of the Workflow execution.

Includes only one of the fields resultJson.

ExecutionErrorExecutionError

Field

Description

message

string

Error message of the Workflow execution.

errorCode

string

Error code of the Workflow execution.

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

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