New `app_installs` object

The new app_installs object allows you to retrieve your app’s installation data through the API. Your query can return most of the same installation information sent through webhooks.

This new object is available in API versions 2024-01 and later. Check out our documentation for more info!

query {
  app_installs (app_id: 123456789, limit: 1, page: 1) {
    app_id
    timestamp
    app_install_account {
      id
    }
    app_install_user {
      id
    }
    app_version {
      major
      minor
      patch
      type
      text
    }
  }
}
2 Likes