User CreatedBeta

Last modified on September 11, 2023 at 6:13 pm

User Created Event Webhook Example

The following is an example of a JSON representation of an User Created event. This illustrates how this event will be represented in the callback to your server.

{
  "event" : "user_created",
  "date" : "2014-04-09T03:11:17Z",
  "source" : "SELF",
  "user" : {
    "id" : "7d2b9881b9a14c4ca61eaae51c84f410",
    "firstName" : "Ginny",
    "lastName" : "Kneeland",
    "username" : "ginn-kneelan@bing.com",
    "email" : "ginn-kneelan@bing.com",
    "password" : "235gas43^",
    "locale" : "en"
  }
}

Property Details

PropertyJSON Data TypeDescription
eventstringThis is the event type that is being sent to this callback. If you are using the same callback URL for all events, you can use this to segement them within your application.
datestringThe date and time when this event occurred. For more information on the format, see the Date/Time Format documentation.
sourcestringThe source indicates how this user was created. If the user created their own profile within your organization then it will be SELF. In the case that an administrator created the user, the source will appear as ADMIN.
userobjectThe user that was created.
user.idobjectThe id of the user. This uniquely identifies the user and can be used to query our API for more information about the user.
user.firstNamestringThe first name of the user.
user.lastNamestringThe last name of the user.
user.emailstringThe email address of the user.
user.usernamestringThis is the username for this user. If an organization uses username instead of email for login, this can be different than the email address.
user.passwordstringThis is the password for this user.
user.localestringThis is the locale preference set on the user’s account