Tutorials / Webhook Integrations / Make (Integromat)
Make (Integromat)
Kick off a Make scenario via Custom Webhook and map Lection rows to any module.
Ideal for: Visual no-code scenarios with routers and branching.
Setup Steps
- In Make, add a Webhooks module → “Custom webhook” → copy the generated URL.
- In Lection, choose Webhook delivery and paste the URL (add X-Lection-Secret if you want filtering).
- 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; optional X-Lection-Secret.
- 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.records and download.url arrive in your tool.
- Publish/activate the workflow so production runs stay wired.