If node, payload

Requirement
I need to either insert or update a Google Calendar event. I have an IF node where:

• The TRUE branch updates the event if a calendar event ID exists.
• The FALSE branch inserts a new event if no ID is found.

Issue
The initial webhook payload is only passed through to the TRUE branch.

Question
Is there a way to ensure the payload is also passed to the FALSE branch?

You can try using a switch:

The end goal is to get the condition to evaluate as true, so you can simply negate your if condition as the second option.

1 Like

perfect… thank you

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.