---
title: "Read Group"
method: GET
path: "/api/v1/groups/{id}"
tags: ["Endpoints", "Groups"]
---

# Read Group

`GET /api/v1/groups/{id}`

Get information about a group.

## Path parameters

- `id` integer, required

## Query parameters

- `after_checkpoint` string
- `limit` integer

## Response `200`

Request was successfully processed

- object
  - `checkpoint` string, required — A token that can be used to get more group members.
  - `additional_results` boolean, required — True if there are more group members to retrieve.
  - `results` object, required — The state of the group.
    - `metadata` GroupMetadata, required — Information about a group.
      - `name` string, required
      - `id` integer
      - `created_at` string, nullable
      - `updated_at` string, nullable
    - `members` union[], required — Input members data for adding/removing members from group, expects one of `address` or `domain`
      - union
        - AddressMember
          - `address` string, email, required
        - DomainMember
          - `domain` string, required

## Other responses

- `400` — There was a problem with the request
- `401` — There was a problem with the request
- `403` — Invalid token or API is not enabled
- `429` — Rate limited - wait a few seconds and try again
- `500` — Server error
- `503` — Server error
- `504` — Server error

---

[API](https://skmtc.net/tessian/apis/tessian-api.md) · [All operations](https://skmtc.net/tessian/apis/tessian-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tessian/tessian-api/versions/08762fb51cf0/schema)
