New User Added

Payload

The payload of this webhook request is an object.
triggerTypeenumOptional
Allowed values: user_account_addeduser_account_updateduser_account_deleted

The type of event that triggered the request

payloadobjectOptional

The fields that define the schema for a given Item are based on the Collection that Item belongs to. Beyond the user defined fields, there are a handful of additional fields that are automatically created for all items

Response

200
any
Return a 200 status to indicate that the data was received successfully.
Payload
1{
2 "triggerType": "user_account_added",
3 "payload": {
4 "id": "string",
5 "isEmailVerified": true,
6 "lastUpdated": "2023-01-01T00:00:00Z",
7 "invitedOn": "2023-01-01T00:00:00Z",
8 "createdOn": "2023-01-01T00:00:00Z",
9 "lastLogin": "2023-01-01T00:00:00Z",
10 "status": "invited",
11 "accessGroups": [
12 {
13 "slug": "string",
14 "type": "admin"
15 }
16 ],
17 "data": {
18 "data": {
19 "name": "string",
20 "email": "string",
21 "accept-privacy": true,
22 "accept-communications": true,
23 "additionalProperties": "string"
24 }
25 }
26 }
27}