YashGarg
(Yash Garg)
March 3, 2024, 5:19am
1
Suppose I have a custom action based integration as my app with monetisation model like say 1000 automations / month. Two questions based on that :
What is the best way to communicate to the user how many automations are left from this 1000 automations in their account ?
How to show plans page to customer if they have exhausted this 1000 limit, for asking them to upgrade ?
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.
YashGarg
(Yash Garg)
March 3, 2024, 3:39pm
3
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
YashGarg
(Yash Garg)
March 3, 2024, 3:44pm
4
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 ?
would be the best way I would think, combined with notifications or emails.
dvdsmpsn
(David @ David Simpson Apps)
March 3, 2024, 7:38pm
6
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 .
kolaai
(alfred)
March 3, 2024, 8:31pm
7
Currently, this does not work for integration apps
1 Like
YashGarg
(Yash Garg)
March 5, 2024, 10:30am
8
Thanks, I think this makes sense