Workflows Service, gRPC: ExecutionService.Start
Written by
Updated at November 26, 2024
Starts new Workflow execution.
gRPC request
rpc Start (StartExecutionRequest) returns (StartExecutionResponse)
StartExecutionRequest
{
"workflow_id": "string",
"input": {
// Includes only one of the fields `input_json`
"input_json": "string"
// end of the list of possible fields
}
}
Field |
Description |
workflow_id |
string Required field. ID of the Workflow. |
input |
Input for the Workflow execution |
ExecutionInput
Field |
Description |
input_json |
string JSON input data for the Workflow execution. Includes only one of the fields |
StartExecutionResponse
{
"execution_id": "string"
}
Field |
Description |
execution_id |
string ID of the Workflow execution. |