Skip to main content

I’m creating a workflow to validate whether a case number in Salesforce is valid so I’m using the Salesforce app to Find by record which works great if the record exists but if it doesn’t the workflow just stops at the salesforce step. I’d like it to continue so that I have a way of knowing the record wasn’t found. Is there a way to do that? 

My workflow now is:

wehbook → filter → salesforce → python code → SNS

 

I finally got it to work by using a path. So my flow is now:

webbook → filter → salesforce → path:

path1 (found): → SNS

path2 (not found): → python → SNS


Thanks for letting us know!