Speed Run Code
Tracks/Automation & Workflows/Make Advanced: Routers, Iterators & API Calls
Level 2

Make Advanced: Routers, Iterators & API Calls

Process lists, call any API, and build production automation systems.

Lesson Notes

The Iterator module is Make's superpower — it takes an array and processes each item one by one through the rest of the scenario. The HTTP module lets you call any API endpoint, even ones Make doesn't have a native integration for. The Set Variable and Get Variable modules let you store values across iterations. Aggregators collect results back into a single bundle after an Iterator. These four modules together let you build any data pipeline without writing code.

Your Challenge

+20 XP

Build a Make scenario that: (1) gets a list of records from Airtable, (2) uses an Iterator to loop through each record, (3) makes an HTTP POST request to a webhook URL for each one, (4) updates the Airtable record to mark it as "processed". Verify all records are updated.