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
  • GetExecutionRequest
  • GetExecutionResponse
  • Execution
  • ExecutionInput
  • ExecutionResult
  • ExecutionError
  1. Workflows API reference
  2. gRPC
  3. Execution
  4. Get

Workflows Service, gRPC: ExecutionService.Get

Written by
Yandex Cloud
Updated at November 26, 2024
  • gRPC request
  • GetExecutionRequest
  • GetExecutionResponse
  • Execution
  • ExecutionInput
  • ExecutionResult
  • ExecutionError

Retrieves specified Workflow execution.

gRPC requestgRPC request

rpc Get (GetExecutionRequest) returns (GetExecutionResponse)

GetExecutionRequestGetExecutionRequest

{
  "execution_id": "string"
}

Field

Description

execution_id

string

Required field. ID of the Workflow execution.

GetExecutionResponseGetExecutionResponse

{
  "execution": {
    "id": "string",
    "workflow_id": "string",
    "input": {
      // Includes only one of the fields `input_json`
      "input_json": "string"
      // end of the list of possible fields
    },
    "result": {
      // Includes only one of the fields `result_json`
      "result_json": "string"
      // end of the list of possible fields
    },
    "error": {
      "message": "string",
      "error_code": "string"
    },
    "status": "Status",
    "started_at": "google.protobuf.Timestamp",
    "duration": "google.protobuf.Duration"
  }
}

Field

Description

execution

Execution

Workflow execution details.

ExecutionExecution

Field

Description

id

string

ID of the Workflow execution. Generated at creation time.

workflow_id

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.

started_at

google.protobuf.Timestamp

Start timestamp for the Workflow execution.

duration

google.protobuf.Duration

Duration of the Workflow execution.

ExecutionInputExecutionInput

Field

Description

input_json

string

JSON input data for the Workflow execution.

Includes only one of the fields input_json.

ExecutionResultExecutionResult

Field

Description

result_json

string

JSON result of the Workflow execution.

Includes only one of the fields result_json.

ExecutionErrorExecutionError

Field

Description

message

string

Error message of the Workflow execution.

error_code

string

Error code of the Workflow execution.

Was the article helpful?

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