---
title: "Get a Group"
method: GET
path: "/api/group/{guid}"
tags: ["group"]
---

# Get a Group

`GET /api/group/{guid}`

This function is an API endpoint that allows an authenticated admin to retrieve a group. It is tagged with "group" for OpenAPI documentation.

## Parameters

- `guid`: The GUID of the group to retrieve.

## Returns

If successful, this function returns a `Json<Group>` object If the group is not found, this function returns a `status::NotFound` error.

## Path parameters

- `guid` string, required

## Response `200`

- Group
  - `guid` string, required
  - `name` string, required
  - `team` string, required
  - `created_at` string, required
  - `access_to` string[], required
  - `accessed_from` string[], required
  - `note` string, nullable
  - `info` string, required

## Other responses

- `404`

## Changes

- **2024-06-12** `a4a2ca9fb3af` — 1 info
  - endpoint added
- **2024-05-19** `fafd43b82c78` — 1 breaking
  - api path removed without deprecation

[Change history](https://skmtc.dev/nesaku/apis/sctgdesk-api-server/changes/api/group/:guid/get.md)

---

[API](https://skmtc.dev/nesaku/apis/sctgdesk-api-server.md) · [All operations](https://skmtc.dev/nesaku/apis/sctgdesk-api-server/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/nesaku/sctgdesk-api-server/revisions/b1c0e7a4434f/schema)
