added

Get notified when your app is installed/uninstalled

We just added a new feature that will notify a URL of your choice when an app is installed (and uninstalled) on a user's account.

To add this to a published app, please create a new minor version, add the relevant URLs, and then publish that version to live.

When the app is installed, your install URL will get the following JSON payload:

{
  "app_id": 3184,
  "account_id": 123456,
  "user_id": 234567,
  "timestamp": "2021-10-28T14:55:34+00:00",
  "version_data": {
    "major": 1,
    "minor": 1,
    "patch": 0,
    "type": "minor"
  },
  "type": "install"
}

For full details on this change, check out the following article: Install URLs