Hey everyone. First time here.
I wanted to create a router or two step filter with pipedream. Need help with how to setup that.
I have an incoming webhook as a trigger. Now based on the data, I want to send an HTTP request with a custom variable.
Example:
IF Data.price == 0 ? send HTTP with tag: "free_user". ELSE Data.price > 0 ? send HTTP with tag: "paid_user. "
Currently, I have added:
Trigger -> filter 1 -> HTTP -> Filter 2 -> HTTP again.
This doesn’t feel like the best way, coz HTTP is mostly same and except the tag name.
I’m looking for:
------> IF condition ------\
Trigger ---------< --------> HTTP
------> IF condition ------/
Possible?