Member Created


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.

Permissions
Manage Bookings Services and Settings
Manage Challenges
Access Verticals by Automations
Set Up Automations
Manage Members and Contacts - all permissions
Read Members and Contacts - all read permissions
Manage Members
Read Members
Manage Events
Manage Portfolio
Manage Restaurants - all permissions
Manage Stores
Learn more about app permissions.
Event BodyEvent Body Event data is received as a JSON Web Token (JWT). It may be delayed. Be sure to verify the data was sent by Wix.
Event Data
idstring

Unique event ID. Allows clients to ignore duplicate webhooks.


entityFqdnstring

Fully qualified domain name of the entity associated with the event. Expected wix.members.v1.member.


slugstring

Event name. Expected created.


entityIdstring

ID of the entity associated with the event.


eventTimestringformat date-time

Event timestamp.


triggeredByAnonymizeRequestboolean

Whether the event was triggered as a result of a privacy regulation application (for example, GDPR).


originatedFromstring

If present, indicates the action that triggered the event.


createdEventCreatedEvent

Event information.

Event Body

The data payload will include the following as an encoded JWT:

JSON
{ "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 } } }

MemberCreated
JSON
{ "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 }
Did this help?