Creates a site member.
After creation, you can use Send Set Password Email to email the member with a link to set their password. The member can log in to the site when they set their password for the first time.
Note: When creating multiple members, set your requests at least 1 second apart to keep below rate limits.
You can only call this method when authenticated as a Wix app or Wix user identity.
Member to create.
New member.
curl -X POST \
https://www.wixapis.com/members/v1/members \
-H 'Content-Type: application/json;charset=UTF-8' \
-H 'Authorization: <AUTH>'
-d '{
"member": {
"loginEmail": "john@example.com"
}
}'
{
"member": {
"id": "dd7cfd02-1837-4fb8-bc6f-86316f0984a9",
"loginEmail": "john@example.com",
"status": "APPROVED",
"contactId": "124dff0e-a821-47d5-a78c-514d828ccdce",
"contact": {
"contactId": "2aba5ff8-888b-4eab-92d5-53209aa88856",
"phones": [],
"emails": ["john@example.com"],
"addresses": [],
"customFields": {}
},
"profile": {
"nickname": "john",
"slug": "john"
},
"privacyStatus": "PUBLIC",
"activityStatus": "ACTIVE",
"createdDate": "2020-07-17T14:26:32Z",
"updatedDate": "2020-07-17T14:26:31.854Z"
}
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.