User Account Added
Trigger Type
memberships_user_account_added
Properties
Field | Type | Description |
---|---|---|
_id | string | Unique identifier for the User |
createdOn | string | The timestamp the user was created |
updatedOn | string | The timestamp the user was updated |
invitedOn | string | The timestamp the user was invited |
lastLogin | string | The timestamp the user was logged in |
emailVerified | Boolean | Shows whether the user has verified their email address |
status | string | The status of the user |
data | object | An object containing the User’s basic info and custom fields |
accessGroups | array | An array of Access Groups the user has access to |
Example
1 { 2 "_id": "64061f907c8237778232f9b7", 3 "invitedOn": "2023-03-06T17:14:56.493Z", 4 "createdOn": "2023-03-06T17:14:56.493Z", 5 "updatedOn": "2023-03-09T20:26:01.245Z", 6 "emailVerified": false, 7 "data": { 8 "name": "Some One", 9 "email": "Some.com", 10 "accept-communications": false, 11 "accept-privacy": false 12 }, 13 "status": "invited", 14 "accessGroups": [ 15 { 16 "slug": "test-access-group", 17 "type": "admin" 18 } 19 ] 20 }