User email now included in app installation webhook

The app installation webhook will now include the email of the admin who installed the application. The same will apply for uninstalls.

Having user emails can help facilitate communication with your users about topics such as app onboarding, support channels, frequently asked questions and other exciting product announcements.

Be sure to avoid using user emails to distribute spam and provide the option for users to opt-out.

Below is an example of what the payload will look like when the app installation webhook is triggered:

{
    "app_id": 12345678,
    "user_id": 90123456,
    "user_email": "alessandra@monday.com",
    "account_id": 12121221,
    "version_data": {
      "major": 1,
      "minor": 0,
      "patch": 0,
      "type": "major"
    },
    "type": "install",
    "timestamp": "2022-06-01T19:23:24.054+00:00"
  }
1 Like