User Account Updated

The information about the user account that was updated

Trigger Type

user_account_updated

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

Example

{
  "triggerType": "user_account_updated",
  "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"
    }
  }
}