Retrieves a member by ID.
PUBLIC
fieldset returns id
, contactId
, and the profile
object. status
, privacyStatus
and activityStatus
are returned as UNKNOWN
.EXTENDED
fieldset returns id
, loginEmail
, status
, contactId
, privacyStatus
, activityStatus
, and the profile
object.FULL
fieldset returns all fields.Members are typically associated with a contact, each having a distinct member and contact ID. When passing the ID as a parameter, avoid presuming the IDs are identical since they represent separate entities.
Member ID.
Predefined set of fields to return.
Defaults to PUBLIC
.
The requested member.
Retrieving a member by ID
curl -X GET \
https://www.wixapis.com/members/v1/members/e62e3011-55cf-4de3-a497-e097b52d86b7 \
-H 'Authorization: <AUTH>' \
{
"member": {
"id": "e62e3011-55cf-4de3-a497-e097b52d86b7",
"status": "UNKNOWN",
"profile": {
"nickname": "John Doe",
"slug": "johndoe",
"photo": {
"id": "a27d24_0dd318~mv2.jpg",
"url": "//static.wixstatic.com/media/a27d24_0dd318~mv2.jpg",
"height": 256,
"width": 256
},
"cover": {
"id": "",
"url": "https://example.com/myimage.jpg",
"height": 1080,
"width": 1920
},
"title": "Awesome title"
},
"privacyStatus": "UNKNOWN",
"activityStatus": "UNKNOWN",
"createdDate": "2019-10-30T17:22:10.299Z",
"updatedDate": "2019-11-13T20:14:49.458Z"
}
}
There is 1 error with this status code.
This method may also return standard errors. Learn more about standard Wix errors.