New field and argument on app_installs queries

We recently added a new argument and a new field on the app_installs object. These are only available in API versions 2024-04 and later.

  • The account_id argument filters app installations by a specific account using the account ID.
  • The permissions field returns the required and approved scopes for an app installation.
query {
  app_installs (app_id: 123456789, account_id: 98766543210) {
    app_id
    timestamp
    app_install_account {
      id
    }
    app_install_user {
      id
    }
    app_version {
      major
      minor
      patch
      type
      text
    }
    permissions {
      approved_scopes
      required_scopes
    }
  }
}