ftos.flow.continue
(FintechOS v24.5.0 to later)
Continue a flow instance (unlock on hold and next).
This is a business logic method for business service components.
Syntax
Copy
(method) Flow.continue(flowName: string, instanceId: string): void
| Parameter | Description |
|---|---|
flowName
|
The name of the flow. |
instanceId
|
The id of the flow instance. |
Example
This example continues an existing LoanApplicationFlow instance that is currently on hold, by calling ftos.flow.continue with the flow name and the instance id, so the engine unlocks it and moves it to the next step.
Copy
var flowName = "LoanApplicationFlow";
var instanceId = "3f4a9a8c-12ab-4cde-9f01-234567890abc";
ftos.flow.continue(flowName, instanceId);