Reputation: 51
I would like to store the outcome of a logic app (success/failure) into a table in Cosmos DB for reporting purposes using logic app.
I would like to know;
Thanks in advance.
Upvotes: 0
Views: 986
Reputation: 8254
There are a few workarounds that we can give it a try
WAY-1:
condition
connector.
(NOTE: Here we need to keep in mind that when a connector fails the flow stops till there itself and so we are using this method )
compose
connector.Below are the screenshots for your reference
Here is the output :
WAY-2 Create nested logic apps
(NOTE: Even in this case we must remember that if one connector in one logic app fails it won't reach the next logic app )
Upvotes: 1