I’m a beginner with Make and this is my first time using it. I need help understanding how the “Delete Item”*module in Webflow works and whether I am using the correct approach to remove an item that has been updated or deleted by the client.
Flow Overview
The goal of my flow is to fetch the list of current job openings from BambooHR and integrate them into the Webflow CMS. If the client adds, updates, or removes one or more job openings in BambooHR, those changes should be reflected in the Webflow CMS.
Here is the structure of my scenario:
BambooHR – Fetch job openings every 15 minutes (for now)
Webflow: List Items – Retrieve all current CMS items
Array Aggregator – Group IDs from Webflow CMS collection
Iterator – Process each Webflow CMS item
Router – Split into different actions:
If the item exists in BambooHR → Update the item
If the item does not exist in BambooHR → Delete the item
If it’s a new item → Create the item
My Issue with “Delete Item”
I am struggling with the “Delete Item” module in Webflow. Currently, my Webflow List Items module retrieves all CMS entries, but I can only delete one item at a time.
Questions:
How can I delete multiple items that no longer exist in BambooHR?
Is “Delete Item” the correct module for this?
How do I correctly map the Webflow Item ID for deletion?
I would really appreciate any guidance or best practices on this! Thank you.