I have an integration app currently going through the review process and I needed some additional information about monetization.
1) For seat based plans, if one plan id offers a free plan (e.g. 0-3 seats) does that qualify as the compulsory free plan? Or is it necessary to apply for 14 days free trial category? I wasn’t sure about this after reading the pricing documentation.
2) I am currently querying the app subscription status using the following query. Now, if I choose 14 days free trial, does this query correctly return if the user is in the ‘14 days free trial’ period? Does this query correctly calculate the trial period and return false upon trial expiry while the app is in marketplace?
Adding to that, what would be the plain_id if the user is in trial period? (seat based pricing + integration app + 14 days free trial)?
query{ app_subscription { plan_id is_trial } }
3) While the user is on trial period, considering I have implemented the ‘14 days free trail’ for my integration app. Is the following query a valid strategy to get the seats count?
query {
apps_monetization_info {
seats_count
}
}
Thanks in advance for any help.