---
title: "List meeting types (v2)"
method: GET
path: "/v2/meeting-types/"
tags: ["meeting-types"]
---

# List meeting types (v2)

`GET /v2/meeting-types/`

List all of the authenticated user's note/meeting types (`id`, `name`, `emoji`, `created_at`). Returns `{ data: { meeting_types: [...] } }` — no pagination.

## Response `200`

Successful response

- object
  - `data` object, required
    - `meeting_types` object[], required
      - `id` string, uuid, required
      - `user_id` string
      - `name` string, required
      - `emoji` string, nullable
      - `created_at` union, required
        - string, date-time
        - unknown
    - `pagination` object
      - `nextCursor` string, nullable
      - `count` integer

## Other responses

- `400` — Request body failed validation.
- `401` — Missing or invalid API key.
- `403` — Valid key, insufficient permission.
- `404` — Resource does not exist.
- `409` — Request conflicts with the current state of the resource.
- `429` — Rate limit exceeded.
- `500` — Unexpected server error.

---

[API](https://skmtc.dev/getdex/apis/dex-public-api.md) · [All operations](https://skmtc.dev/getdex/apis/dex-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/getdex/dex-public-api/revisions/eb1883ce3c67/schema)
