Scenario auto shutdown daily report

  1. Looks like Make does have an API endpoint to fetch a list of your notifications.

  2. From there you need to use another API endpoint to get the text content (details) of each notification. The body contains HTML links to the scenario.

  3. Lastly, if you need extra details of the scenario, you can parse the scenario ID from the body of the notification detail, and then use “Get scenario details”.

  4. If you want a daily report, just set the scenario to run daily, iterate through all notifications for the day, and compile them into a single string using a text aggregator module.

2 Likes