GET

List Members By Badge


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.

Permissions
Manage Badges
Read Badges
Learn more about app permissions.
Endpoint
GET
https://www.wixapis.com/members/v3/badges/{id}/members

Path Params
idstringRequired

Badge ID.

Query Params
paging.limitintegerminimum 0format int32

Number of items to load.


paging.offsetintegerminimum 0format int32

Number of items to skip in the current sort order.

Response Object
memberIdsArray <string>format GUID

Member IDs assigned to the badge.


metadataMetadata

Metadata for the paginated results.

List members

Retrieving members assigned to a badge

Request
cURL
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>'
Response
JSON
{ "memberIds": [ "cdd1993d-811e-453d-8a0e-b9e0f7780b96", "b32b708e-d531-42fb-846b-f23c367d9c92" ], "metadata": { "count": 2, "offset": 1, "total": 10, "tooManyToCount": false } }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?