I have two modules in my scenario: Elementor and Google Sheets.
If I click on either of them I don’t see the “Choose where to start” option. Is it because I am on the free plan?
Welcome to make community
You can find ‘Choose where to start’ by right-clicking on the module.
Welcome to the Make community!
The options available in the epoch panel differ trigger from trigger, depending on the the possibilities of a given service. In fact, some triggers do not offer any options at all.
For more information, see
This is because the module is an INSTANT (Webhook) trigger, and not a POLLING trigger.
There are two main types of triggers, Polling (scheduled), and Instant (webhooks). Polling triggers can only run on a schedule. Instant triggers can be run as soon as data is received by the webhook.
Polling means Make checks external service for changes (pull changes to Make).
Webhook (instant) triggers means external service calls Make when there are new changes (push changes to Make).
With polling triggers, you can “rewind” or pick where to start, because Make stores a pointer and uses it to fetch new items from that point. With Instant triggers, Make only passively listens to incoming requests.
So you will need to resend the request from the external service for the trigger to receive the request.
To find out more on the different types of Trigger modules, see refer to Types of Modules and Webhooks sections of the Make help center.