You can send a notification in monday, or an email.
Also when they run out use the error handling to say why their automation failed.
Thanks a lot, I wasn’t aware I could send notifications from app. But after your message, saw the documentation, and implemented failure notifications and it now works well 🙂
Would you also be know best practice to tackle this
- What is the best way to communicate to the user how many automations are left from this 1000 automations in their account ?
Apps Framework
would be the best way I would think, combined with notifications or emails.
If they’ve exhausted their plan, or want to upgrade anyway, you should trigger:
monday.execute('openPlanSelection', {isInPlanSelection: true});
👆 This should work in account settings view.
Currently, this does not work for integration apps
Thanks, I think this makes sense