So i am building an automation where if the URL is valid and it HTTP make a request works and it can actually extract the HTML then it goes one module and if it is not valid or is not reachable or some error occurs then it goes to another module. So how can I setup filters for this?
To set up filters in Make.com for handling valid vs invalid HTTP requests, you can create two paths using filters after the HTTP module:
Success Path Filter
- Click the filter icon between modules
- Set up the success path with these conditions:
- Status is 200
- Data exists
- Error is empty
Error Path Filter
- Create a second route from the HTTP module
- Set up the error path filter with these conditions:
- Status is not 200
1 Like
Thanks for the solution I simply used DATA exists or not exists to filter it, sorry for wasting your time.