Retrieves a list of up to 100 group members, given the provided paging.
For groups with group.privacyStatus
set to SECRET
, only group admins and group members can see the group and its content.
Default sorts by joinedDate
in descending order.
Group ID.
Number of items to load. Maximum 100
.
Number of items to skip in the current sort order.
Retrieved members.
Paging information.
curl -X GET \
https://wixapis.com/social-groups/v2/groups/8a258cf5-49f3-41dc-b320-65ec2598315b/members?limit=100 \
-H 'Content-Type: application/json;charset=UTF-8' \
-H 'Authorization: <AUTH>'
{
"members": [
{
"siteMemberId": "223c37e0-3474-43c5-8d47-e374b414ef68",
"role": {
"value": "MEMBER"
},
"joinedDate": "2020-12-19T17:40:23Z"
},
{
"siteMemberId": "88e40cba-392b-4333-8717-9375d57f4de7",
"role": {
"value": "ADMIN"
},
"joinedDate": "2020-09-17T09:17:56Z"
}
],
"metadata": {
"count": 2,
"offset": 0,
"total": 2
}
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.