v1
latestOpenAPI 3.0.02026-08-062438369.6 KBGroups
Get Group Members
Returns a paginated list of all users who are members of the specified group. Use this endpoint to inspect current group membership before making changes, or to sync group membership data into an external system.
get/groups/{id}/members
Path parameters
idinteger required
The unique VOMO identifier for the group whose members to retrieve.
Response
Returns the paginated list of users who are members of this group. The response includes pagination links and meta fields to navigate additional pages.
Example response
{
"data": [
{
"type": "user",
"id": "1",
"first_name": "John",
"last_name": "Doe",
"full_name": "John Doe",
"email": "person@vomo.org",
"address": "610 Elm St, McKinney, TX 75069, USA",
"phone": "1234567890",
"birthday": "1975-12-01",
"gender": "M",
"updated_at": "2016-03-07T07:49:41+00:00",
"created_at": "2016-03-07T07:49:41+00:00",
"user_status": "VERIFIED",
"membership_status": "ACCEPTED",
"membership_role": "VOLUNTEER"
}
]
}