[SalesForce] How to pass parameter to flow launched from Quick Action

I have created a quick action in account and launched a flow. I need to get account id in that flow. Is there anyway to achieve this?

Currently I implemented with a custom url button and passed account id as a parameter with flow URL.

/flow/Opportunity_Management_Process?varAccountId={!Account.Id}

Can I implement the same with Quick action or get current record id in flow launched from quick action.

Best Answer

From the input got from Pranay's answer, I was able to launch flow from quick action. I have created a quick action in Account like: enter image description here

Then I created recordId variable in my flow. enter image description here

Using recordId I added a record lookup to account details. No need to pass account id to flow. recordId is a reserved variable which holds current record id. enter image description here

Related Topic