List members in a group
Get the members list and basic details. It returns up to 200 contacts per page.
Path parameters
-
The group id you want to list
-
The page number
GET /groups/members/{groupid}/{page}
curl \
-X GET https://YOURSITE.infoodle.com/apiv2/groups/members/310/5 \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"groupId": 498,
"members": [
{
"userId": 98739,
"firstname": "Richard",
"middlename": "string",
"lastname": "Jones",
"gender": "Male",
"householdname": "string",
"isOrganisation": "N",
"membership": {
"code": "A",
"text": "View only"
}
}
]
}