Skip to main content
GET
https://api.vomo.org/v1
/
groups
/
{id}
Get a Group
curl --request GET \
  --url https://api.vomo.org/v1/groups/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 602,
    "name": "Food Pantry Team",
    "description": "Core team for food pantry operations.",
    "parent_id": null,
    "has_subgroups": true,
    "subgroups": [
      {
        "id": 603,
        "name": "Food Pantry - Intake",
        "description": "Handles intake and sorting.",
        "parent_id": 602,
        "has_subgroups": false,
        "created_at": "2025-11-05T09:00:00+00:00",
        "updated_at": "2025-11-05T09:00:00+00:00"
      }
    ],
    "parent": null,
    "created_at": "2025-11-02T10:00:00+00:00",
    "updated_at": "2025-11-10T08:00:00+00:00"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
integer
required

VOMO Group ID

Response

Returns the group record, including its parent group (if any) and any direct child subgroups.

data
object

List of Groups

Last modified on June 5, 2026