Skip to main content
GET
https://api.vomo.org/v1
/
groups
Get All Groups
curl --request GET \
  --url https://api.vomo.org/v1/groups \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 601,
      "name": "Saturday Morning Crew",
      "description": "Volunteers who serve on Saturday mornings.",
      "parent_id": null,
      "has_subgroups": false,
      "created_at": "2025-11-01T09:00:00+00:00",
      "updated_at": "2025-11-01T09:00:00+00:00"
    },
    {
      "id": 602,
      "name": "Food Pantry Team",
      "description": "Core team for food pantry operations.",
      "parent_id": null,
      "has_subgroups": true,
      "created_at": "2025-11-02T10:00:00+00:00",
      "updated_at": "2025-11-10T08:00:00+00:00"
    }
  ],
  "links": {
    "first": "https://api.vomo.org/v1/groups?page=1",
    "last": "https://api.vomo.org/v1/groups?page=1",
    "prev": null,
    "next": null
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 1,
    "to": 8,
    "path": "https://api.vomo.org/v1/groups",
    "per_page": 15,
    "total": 8
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

name_like
string

The group name, or part of a name, to search for.

parent_id
string

Filter results to only groups that are direct children of the group with this ID. Provide the VOMO Group ID of the parent group.

created_before
string<date-time>

Date the Group was created on or before.

created_after
string<date-time>

Date the Group was created on or after

updated_before
string<date-time>

Date the Group was updated on or before.

updated_after
string<date-time>

Date the Group was updated on or after

Response

Returns the paginated list of groups for your organization. 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