To pass a record’s ID into a flow placed on a record page (e.g., an Account record page), the variable inside the flow must be configured with the setting:
“Available for input” — ✅ This tells the flow to accept external values when invoked, such as from a Lightning App Page or Quick Action.
Salesforce automatically passes the recordId variable to a flow placed on a record page if the flow includes a Text variable marked “Available for input” with the API name recordId.
Incorrect Options:
B. “Available for output” is used when passing data out of the flow.
C. “Get Record” retrieves records inside the flow, not for passing input from the page.
D. “Allow multiple values” is used for collections, not input variables.
Reference Extracts from Salesforce Help Documentation on Flow Variables and Record-Triggered Flows:
“To pass a record ID to a flow from a Lightning record page, create a Text variable named recordId and mark it as Available for input.”
===========
Submit