User Account Added

The information about the user account that was added

Trigger Type

user_account_added

Properties

FieldTypeDescription
id stringUnique identifier for the User
isEmailVerifiedbooleanIndicates whether the user has verified their email address
lastUpdated stringThe timestamp the user was updated
createdOn stringThe timestamp the user was created
statusstringThe status of the user
accessGroupsarrayA list of access groups the user belongs to
dataobjectUser-specific data

Example

{
  "triggerType": "user_account_added",
  "payload": {
    "id": "6287ec36a841b25637c663df",
    "isEmailVerified": true,
    "lastUpdated": "2022-05-20T13:46:12.093Z",
    "createdOn": "2022-05-20T13:46:12.093Z",
    "status": "verified",
    "accessGroups": [
      {
        "slug": "webflowers",
        "type": "admin"
      }
    ],
    "data": {
      "accept-privacy": false,
      "accept-communications": false,
      "email": "[email protected]",
      "name": "Some One"
    }
  }
}