Account Updated

Payload

The payload of this webhook request is an object.
_idstringOptional

Unique identifier for the User

createdOndatetimeOptional

The timestamp the user was created

updatedOndatetimeOptional

The timestamp the user was updated

invitedOndatetimeOptional

The timestamp the user was invited

lastLogindatetimeOptional

The timestamp the user was logged in

emailVerifiedbooleanOptional

Shows whether the user has verified their email address

statusenumOptional
Allowed values: invitedverifiedunverified

The status of the user

accessGroupslist of objectsOptional

Access groups the user belongs to

datamap from strings to anyOptional

An object containing the User’s basic info and custom fields

Response

200
any
Return a 200 status to indicate that the data was received successfully.
Payload
1{
2 "_id": "6287ec36a841b25637c663df",
3 "createdOn": "2022-05-20T13:46:12Z",
4 "updatedOn": "2022-05-20T13:46:12Z",
5 "invitedOn": "2016-10-24T19:41:29Z",
6 "lastLogin": "2016-10-24T19:41:29Z",
7 "emailVerified": true,
8 "status": "verified",
9 "data": {
10 "accept-privacy": false,
11 "accept-communications": false,
12 "email": "Some.One@home.com",
13 "name": "Some One"
14 }
15}