Retrieves up to 1000 site members
who have a specified badge.
Default paging.limit
is 100, paging.offset
- 0.
For more details on how to use paging, see documentation
here.
Badge ID.
Number of items to load.
Number of items to skip in the current sort order.
Member IDs assigned to the badge.
Metadata for the paginated results.
Retrieving members assigned to a badge
curl -X GET \
'https://www.wixapis.com/members/v3/badges/ffdc5c7d-d080-4c7c-869e-a8c4478532c0/members?paging.limit=2&paging.offset=1' \
-H 'Authorization: <AUTH>'
{
"memberIds": [
"cdd1993d-811e-453d-8a0e-b9e0f7780b96",
"b32b708e-d531-42fb-846b-f23c367d9c92"
],
"metadata": {
"count": 2,
"offset": 1,
"total": 10,
"tooManyToCount": false
}
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.