Lightning Experience, Experience Builder Sites, Salesforce Mobile App, Lightning Out (Beta), Standalone Lightning App
A lightning-flow component represents a screen flow interview in Lightning runtime. To use this component, build a flow with the Salesforce Flow Builder first.
To create a flow in your component, set the lightning-flow component’s flowApiName attribute to the name of the flow that you want to use. The component includes navigation buttons (Back, Next, Pause, and Finish), for users to navigate within the flow.
This example creates and starts the Survey Customers flow.
You can provide initial inputs for the interview by setting the flowInputVariables attribute to an array of input values.
This example creates and starts an interview by passing in initial values for the flow. It handles a change in the interview using the onstatuschange event handler.
1get inputVariables(){2 return[3{4 name: 'OpportunityID',5 type: 'String',6 value: '<Opportunity.Id>'7},8{9 name: 'AccountID',10 type: 'String',11 value: '<Opportunity.AccountId>'12}13];14}1516handleStatusChange(event){17 if(event.detail.status === 'FINISHED'){18 // set behavior after a finished flow interview19}20}
Usage Considerations
The lightning-flow component only supports active flows for the flowApiName attribute.
If you have custom Lightning Web Components or Aura components in your flow, then you won’t be able to use lightning-flow on Experience Cloud sites that use Lightning Web Runtime.
The onstatuschange event returns these parameters.
Parameter
Type
Description
activeStages
Object[]
The current value of the $Flow.ActiveStages variable in the flow. Available in API version 42.0 and later.
currentStage
Object
The current value of the $Flow.CurrentStage variable in the flow. Available in API version 42.0 and later.
flowTitle
String
The flow’s label.
helpText
String
The help text for the current screen. Available in API version 42.0 and later.
guid
String
The interview’s GUID. Available in API version 42.0 and later.
outputVariables
Object[]
The current values for the flow’s output variables.
status
String
The current status of the interview.
These are the valid status values for a flow interview.
STARTED: The interview is started and ongoing.
PAUSED: The interview is paused successfully.
FINISHED: The interview for a flow with screens is finished.
FINISHED_SCREEN: The interview for a flow without screens is finished.
ERROR: Something went wrong and the interview failed.
Customizing a Flow's Finish Behavior
By default, a finished flow without screens displays the message “Your flow finished.” A finished flow with screens returns users to the first screen for a new interview.
Change this behavior with the flowFinishBehavior attribute to manage whether a new interview should restart or only run once.
These are the valid flowFinishBehavior values.
NONE: The flow only runs once.
RESTART: The flow restarts once it has finished.
To customize what happens when the flow finishes, add an event handler for the onstatuschange action when the status value contains FINISHED.
Attributes
Name
Description
Type
Default
Required
flow-api-name
The API name of the flow interview. Required to start a new flow interview. Setting this value resets the `flowInterviewId`. This attribute doesn't set if there's an ongoing interview for this flow. Pause or finish the interview in progress to start a new one.
string
flow-finish-behavior
Sets the behavior when the flow completes. Valid values are NONE and RESTART. Default is RESTART. Not required.
string
RESTART
flow-input-variables
An array of values to provide when starting an interview. Setting this value resets the `flowInterviewId`. This attribute doesn't set if there's an ongoing interview for this flow. Pause or finish the interview in progress to start a new one.
Object[]
flow-interview-id
The ID of interview you use to resume a flow. Required to resume an interview. Setting this value resets `flowApiName` and `flowInputVariables`. This attribute doesn't set if there's an ongoing interview for this flow. Pause or finish the interview in progress to resume a new one.
string
Methods
Name
Description
Argument Name
Argument Type
Argument Description
resumeFlow
Call this method with a `flowInterviewId` to resume an existing paused interview
flowInterviewId
string
The ID of interview you use to resume a flow. Required.
startFlow
Starts a flow interview.
flowApiName
string
The API name of the flow interview. Required.
flowInputVariables
Object[]
An array of values to provide when starting an interview.