Workflows Service, REST: Execution.Start
Статья создана
Обновлена 17 октября 2024 г.
Starts new Workflow execution.
HTTP request
POST https://serverless-workflows.api.cloud.yandex.net/workflows/v1/execution/start
Body parameters
{
"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 |
Response
HTTP Code: 200 - OK
{
"executionId": "string"
}
Field |
Description |
executionId |
string ID of the Workflow execution. |