Best answer

Continuing when no fields found in Salesforce


Userlevel 2

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

 

icon

Best answer by acriblet 9 May 2020, 04:27

View original

This post has been closed for comments. Please create a new post if you need help or have a question about this topic.

2 replies

Userlevel 2

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

Userlevel 7
Badge +9

Thanks for letting us know!