Account Updated

Payload

The payload of this webhook request is an object.
_idstringOptional

Unique identifier for the User

createdOndatetimeOptionalDefaults to 1970-01-01T00:00:00.000Z

The timestamp the user was created

updatedOndatetimeOptionalDefaults to 1970-01-01T00:00:00.000Z

The timestamp the user was updated

invitedOndatetimeOptionalDefaults to 1970-01-01T00:00:00.000Z

The timestamp the user was invited

lastLogindatetimeOptionalDefaults to 1970-01-01T00:00:00.000Z

The timestamp the user was logged in

emailVerifiedbooleanOptionalDefaults to false

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": "string",
3 "createdOn": "2023-01-01T00:00:00Z",
4 "updatedOn": "2023-01-01T00:00:00Z",
5 "invitedOn": "2023-01-01T00:00:00Z",
6 "lastLogin": "2023-01-01T00:00:00Z",
7 "emailVerified": true,
8 "status": "invited",
9 "accessGroups": [
10 {
11 "slug": "string",
12 "type": "admin"
13 }
14 ],
15 "data": {
16 "string": {}
17 }
18}