Best answer

Running Paths with known stopped tasks

  • 23 August 2020
  • 6 replies
  • 321 views

Userlevel 2
Badge

Building a system where new calendly event triggers a series of webhooks on MinbodyOnline.
I’ve accomplished the below with two separate tasks but wondering if it would work as a path.

Trigger: New invitee in Calendly

Path A:
 - POST to create a new client in MBO’s CRM

Path B:

 - GET to find the client’s ID by their Email
 - POST to create a calendar event in MBO

 

 

The reason I need two separate zaps or two legs of a path is that there are times where someone is already created in MBO and if I try to “re-create” them, it will error out.

If I get the error in Path A, will it continue to Path B or stop the workflow?

icon

Best answer by Troy Tessalone 24 August 2020, 16:02

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.

6 replies

Userlevel 7
Badge +14

Believe each Path will run if the filter conditions are met.

Why not setup and test using Paths to confirm?

Userlevel 7
Badge +7

Hi @Robert_Segelquist ,

Paths by Zaper is basically an if/else statement.

  • If a condition before the path meets something, it runs the next step.
  • Else if it meets something else, it runs another step

Paths can’t really be used when you want both path A & path B to be running. Try to use the following instead maybe:

  • A filter, that checks if the contact already excists
  • A path that either;
    • Runs a next step if the filter is true
    • Or another step (or nothing) if the filter is false

Hope this helps you!

~Bjorn

Userlevel 7
Badge +14

@ForYourIT 

FYI: Per Zapier documentation - “If a set of trigger data meets more than one path’s rule(s), it will go down each of those of paths.”

Article: https://zapier.com/help/create/customize/add-branching-logic-to-zaps-with-paths

Userlevel 2
Badge

@Troy Tessalone , that was what I thought - more wondering on if I have a known task that will stop the flow what would happen.

I am testing it, just wondered if anybody else had, because it’s several steps to set this system up, and if somebody knew that it would create a fail point, saves me the trouble.

Userlevel 7
Badge +7

@Robert_Segelquist I think that if one of the paths gets stopped the whole flow of the path gets stopped. Thats why I proposed the filter setup. Haven’t tested it however, let me know!

Userlevel 7
Badge +14

@Robert_Segelquist

Believe each path will run even if resulting in an error.

Similar to how a Zap will proceed even in error if the future steps don’t rely upon data from the step that resulted in an error.

To test, you could create a simplified dummy Zap to check.