Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.getmembrane.com/llms.txt

Use this file to discover all available pages before exploring further.

To enable or disable a specific Flow Instance, patch its enabled property:
await membrane.flowInstance(parameters.FLOW_INSTANCE_ID).patch({ enabled: true })
Flow Instances are enabled by default but you can create a disabled flow instances using the enabled field e.g
await membrane
.flowInstances.create({
  enabled: false
})