Triggered when a member is created.
The site owner can configure the site to automatically approve members or require manual approval.
A member who has been approved either automatically or manually has a status
of "APPROVED"
. A created member waiting for approval has a status
of "PENDING"
. A "PENDING"
member can't log in to the site.
Unique event ID. Allows clients to ignore duplicate webhooks.
Fully qualified domain name of the entity associated with the event. Expected wix.members.v1.member
.
Event name. Expected created
.
ID of the entity associated with the event.
Event timestamp.
Whether the event was triggered as a result of a privacy regulation application (for example, GDPR).
If present, indicates the action that triggered the event.
Event information.
The data payload will include the following as an encoded JWT:
{
"data": {
"eventType": "wix.members.v1.member_created",
"instanceId": "<app-instance-id>",
"data": "<stringified-JSON>",
// The identity field is sent as a stringified JSON
"identity": {
"identityType": "<identityType>", // ANONYMOUS_VISITOR, MEMBER, WIX_USER, APP
"anonymousVisitorId": "<anonymousVisitorId>", // in case of ANONYMOUS_VISITOR
"memberId": "<memberId>", // in case of MEMBER
"wixUserId": "<wixUserId>", // in case of WIX_USER
"appId": "<appId>" // in case of APP
}
}
}
{
"id": "87c0d894-4ed1-4c75-b167-27b7622558d2",
"entityFqdn": "wix.members.v1.member",
"slug": "created",
"entityId": "89f3da66-abcb-4b0f-bb1d-68ce0faaaa12",
"createdEvent": {
"entity": {
"loginEmail": "john@example.com",
"privacyStatus": "PUBLIC",
"contactId": "89f3da66-abcb-4b0f-bb1d-68ce0faaaa12",
"contact": {
"contactId": "89f3da66-abcb-4b0f-bb1d-68ce0faaaa12",
"emails": ["john@example.com"]
},
"id": "89f3da66-abcb-4b0f-bb1d-68ce0faaaa12",
"activityStatus": "ACTIVE",
"profile": {
"nickname": "John Doe",
"slug": "johndoe"
},
"status": "APPROVED",
"updatedDate": "2021-01-27T11:23:42.486Z",
"createdDate": "2021-01-27T11:23:42Z",
"lastLoginDate": "2021-01-27T11:23:43Z"
}
},
"eventTime": "2021-01-27T11:23:43.804694Z",
"triggeredByAnonymizeRequest": false
}