External Users

This documentation covers webhooks related to users in your external apps.

lease note that these hooks are not available for your internal users.

User Created

This webhook is triggered when a new user signs up for one of your apps, including anonymous users.

Payload

{
    // The ID of the newly created user
    "userId": string,
    // An ISO 8601 date string representing the creation time of the user
    "createdAt": string,
    // The email of the user (null for anonymous users)
    "email": string,
    // The ID of the app the user signed up for
    "appId": string
}

Last updated