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