Skip to main content
GET
https://api.vomo.org/v1
/
groups
/
{id}
/
members
Get Group Members
curl --request GET \
  --url https://api.vomo.org/v1/groups/{id}/members \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "type": "user",
      "id": "7903",
      "first_name": "Priya",
      "last_name": "Sharma",
      "full_name": "Priya Sharma",
      "email": "priya.sharma@example.org",
      "address": "123 Maple Ave, McKinney, TX 75069, USA",
      "phone": "(555) 012-0103",
      "birthday": "1990-03-15",
      "gender": "F",
      "created_at": "2025-11-01T09:00:00+00:00",
      "updated_at": "2025-11-05T14:22:00+00:00",
      "user_status": "VERIFIED",
      "membership_status": "ACCEPTED",
      "membership_role": "ORGANIZER"
    },
    {
      "type": "user",
      "id": "8104",
      "first_name": "Aisha",
      "last_name": "Mohamed",
      "full_name": "Aisha Mohamed",
      "email": "aisha.mohamed@example.org",
      "address": "789 Birch Dr, McKinney, TX 75069, USA",
      "phone": "(555) 012-0104",
      "birthday": "1993-11-08",
      "gender": "F",
      "created_at": "2025-11-03T11:00:00+00:00",
      "updated_at": "2025-11-03T11:00:00+00:00",
      "user_status": "VERIFIED",
      "membership_status": "ACCEPTED",
      "membership_role": "VOLUNTEER"
    }
  ],
  "links": {
    "first": "https://api.vomo.org/v1/groups/602/members?page=1",
    "last": "https://api.vomo.org/v1/groups/602/members?page=1",
    "prev": null,
    "next": null
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 1,
    "to": 2,
    "path": "https://api.vomo.org/v1/groups/602/members",
    "per_page": 15,
    "total": 2
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer
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.

data
object[]

Pagination navigation links returned on every paginated list response. Each URL points at the specific list endpoint being called.

meta
object

Pagination metadata returned on every paginated list response.

Last modified on June 5, 2026