Get group members
Name | Description | Type | Additional information |
---|---|---|---|
groupId |
Id for the group |
integer |
Required |
pageSize |
Number of results to return (defaults to 25, max of 200) |
integer |
Default value is 25 |
page |
Page number (starting page is 1) |
integer |
Default value is 1 |
None.
https://api.servicereef.com/v1/groups/{groupId}/members?pageSize={pageSize}&page={page}
Returns a paginated list of members for the group
GroupMemberDetailsResultName | Description | Type | Additional information |
---|---|---|---|
PageInfo | PageModel | ||
Results | Collection of GroupMemberModel |
Try this endpoint by entering your credentials and using the API Explorer.
Try With API Explorer{ "PageInfo": { "TotalRecords": 1, "Page": 2, "PageSize": 3 }, "Results": [ { "UserID": 1, "FirstName": "sample string 2", "LastName": "sample string 3", "Email": "sample string 4", "Status": "Active", "DateAdded": "2025-01-24T13:00:02.6557507Z" }, { "UserID": 1, "FirstName": "sample string 2", "LastName": "sample string 3", "Email": "sample string 4", "Status": "Active", "DateAdded": "2025-01-24T13:00:02.6557507Z" } ] }