---
title: "List groups"
method: GET
path: "/groups"
tags: ["Groups"]
---

# List groups

`GET /groups`

Retrieves all groups owned by the current user.

## Query parameters

- `owner` string, email
- `type` 'domain' | 'list'
- `sort` 'created' | 'name' | 'type'
- `order` 'asc' | 'desc'
- `limit` integer
- `offset` integer

## Response `200`

A paginated list of groups.

- object
  - `data` Group[]
    - `id` string, ulid, required
    - `owner` string, ulid, required
    - `name` string, required
    - `description` string, nullable
    - `type` 'domain' | 'list', required
    - `domain` string, fqdn — Present if type is 'domain'.
    - `members` string[] — Array of user emails. Present if type is 'list'.
  - `pagination` Pagination
    - `offset` integer, required
    - `limit` integer, required
    - `total` integer, required

## Other responses

- `401` — Unauthorized

## Changes

- **2026-07-14** `85c657c8ce11` — 1 breaking
  - for the `query` request parameter `owner`, the type/format was changed from `string`/`ulid` to `string`/`email`
- **2025-07-20** `7761ba23f677` — 2 info
  - added the new optional `query` request parameter `owner`
  - added the new optional `query` request parameter `type`
- **2025-07-14** `9aec27988ad3` — 1 breaking
  - the `data/items/domain` response's property type/format changed from `string`/`hostname` to `string`/`fqdn` for status `200`
- **2025-07-14** `29160670a929` — 1 breaking, 6 info
  - the response's body type/format changed from `array`/`` to `object`/`` for status `200`
  - added the new optional `query` request parameter `limit`
  - added the new optional `query` request parameter `offset`
  - added the new optional `query` request parameter `order`
  - …3 more
- **2025-07-14** `128cf3db212c` — 2 info
  - added the optional property `items/domain` to the response with the `200` status
  - added the optional property `items/members` to the response with the `200` status

[Full history](https://skmtc.dev/osdg-iiith/apis/forms-portal-api/changes/groups/get.md)

---

[API](https://skmtc.dev/osdg-iiith/apis/forms-portal-api.md) · [All operations](https://skmtc.dev/osdg-iiith/apis/forms-portal-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/osdg-iiith/forms-portal-api/revisions/85c657c8ce11/schema)
