Checking user's subscription before any action?

@apsimos You’ll need to add the account:read OAuth scope to your app to run that query.

Also, get a bit more information…

{
  account {
      plan {
          version
          max_users
      }
  }
}

Also get the version of the plan, because if you update the plan, currently existing accounts will remain on the old plan.

And consider some weirdness in the max_users when using webhooks.

1 Like