Kick off a Make scenario via Custom Webhook and map Lection rows to any module.
Setup Steps
- In Make, add a Webhooks module → “Custom webhook” → copy the generated URL.
- In Lection, set delivery channel to "Make" and paste the URL.
- Run a test scrape; click “Redetermine data structure” in Make to sample the payload.
- Add modules to iterate dataset.records and push to your target (e.g., Google Sheets, Airtable, DB).
- Publish the scenario; Make will receive every completed scheduled scrape.
Mapping Tips
- Use an Iterator module on dataset.records to loop each row.
- dataset.columns gives header order; dataset.records[*] keys match those column names.
- Use download.url for a signed export link if you need to hand off files.
Payload Highlights
- POST JSON with event scheduled_scrape.completed and version 1.
- Headers: Content-Type: application/json.
- dataset.records is an array of objects; dataset.rowCount is the total rows.
Helpful Links
Test Checklist
- Set webhook URL and optional secret in Lection.
- Run a scheduled scrape to capture sample data.
- Confirm
dataset.recordsanddownload.urlarrive in your tool. - Publish/activate the workflow so production runs stay wired.