• geekletech geekletech
  • NEWBIE
  • -1 Points
  • Member since 2020

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 1
    Replies
Hi,
I am trying to invoke flow from apex with muliple parameters.
Normally we can invoke flow like below.
Map<String, Object> params = new Map<String, Object>(); params.put('opportunityId', '006b000000NfSk4'); Flow.Interview.DeleteAccountFlow flowToRemoveAcc = new Flow.Interview.DeleteAccountFlow(params); flowToRemoveAcc.start();
but , i need to handle multiple Parameters. can anyone suggest me or have any idea on how to handle this?