Enable and Disable Flow Instances
Enabling and Disabling Flow Instances
To enable or disable a specific Flow Instance, patch its enabled
property:
await integrationApp
.flowInstance(parameters.FLOW_INSTANCE_ID)
.patch({ enabled: true })
Flow Instances are created enabled by default.
Updated 12 days ago