I have a flow the takes an HTTP response an then uses an Execute Stored Procedure V2 to import the data into an SQL Server db. This all works fine.
Now, I want to have the Store Procedure return a string containing multiple bits of information: status (Success, Failure), identity, ... for a total of 4 elements so they can be use to build and send the appropriate e-mail to the user.
My question is, how can I parse the Execute Stored Procedure V2 return so as to split the return into individual variable for used thereafter? What action?
Thank you.