How to show plans page for integration apps

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.

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 :slight_smile:

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.

If they’ve exhausted their plan, or want to upgrade anyway, you should trigger:

monday.execute('openPlanSelection', {isInPlanSelection: true});

:point_up_2: This should work in account settings view.

Currently, this does not work for integration apps

1 Like

Thanks, I think this makes sense