Google My Business Reviews - which intervall to use?

Hi together,

Currently we watch new Google My Business Reviews and answer them directly. Now I face three issues:

  1. The scenario answers always also old reviews, not just new, even if I choose “from now on”. Why is this happening?
  2. Do I use the intervall like every 10 min or “on demand”? For the second it seems, that it is not triggering and reviews are then not answered.
  3. It seems like every 10-14 days some new reviews cant be identified. Is this a known bug?

Regards,
Soeren

1 Like

Welcome to the Make community!

Polling Triggers & Empty “Check Runs”

This is because the module is a POLLING trigger, and not an INSTANT (Webhook) trigger.

If you don’t see any bundles from the trigger module and operations on the rest of the modules, it means there are no new responses (empty output bundle) when the scenario ran to check for new items. This is called a “Check run”.

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).

The module you are using does not push changes — it’s basically a API request that Make has to occasionally “call” to fetch the latest changes/items.

To find out more on the different types of Trigger modules, see refer to Types of Modules and Webhooks sections of the Make Help Centre.

If you want your scenario to only run when there is new data (and not on a schedule or timed interval), see if your app has an “Instant” or “Webhook” trigger in Make. If not, check if the third-party service has a feature that can send out a webhook when content is created/updated - and then you can point it to a “Custom Webhook” trigger in your scenario.

If you want to re-run your scenario on older data,

Polling Triggers: Epoch Panel & Selecting Older Data

Go to the Epoch Panel, by right-clicking on the trigger module (polling triggers only), and select “Choose where to start” from the list of options in the context menu.

If you select “From now on”, the next time the scenario runs it will only return new data (or nothing if there is no new data).

You can also select other old data to re-run your scenario with next using the “Choose manually” option. This will then show you a list of previous historical items you can select to process the next time the scenario is triggered.

For more information, see

Hope this helps! Let me know if there are any further questions or issues.

@samliew

P.S.: Investing some effort into the Make Academy will save you lots of time and frustration using Make.

Hi @samliew ,

Thanks for the quick answer. Now the following questions:

  1. What is the best recommended way on how to check for new reviews, work with a webhook or have it at 10min intervall?

  2. If I have a 10 min interval and within that time frame I receive 2 reviews but the limit is set to 1, will then only be 1 review answered and the second in the next run or won’t the second not answered at all?

  3. Is there even an option to trigger this with a webhook? I think some other tools have it like this:

Regards

1 Like

According to Are there Webhooks for Google My Business (GMB)? - Stack Overflow, GMB does not have webhooks. Services that provide an “instant” trigger probably does the “polling” for you behind the scenes.

Yes. You should set the limit higher if you are expecting more than one review per scheduled run.

Hope this helps! Let me know if there are any further questions or issues.

@samliew

P.S.: Investing some effort into the Make Academy will save you lots of time and frustration using Make.