---
title: "Update a meeting type (v2)"
method: PATCH
path: "/v2/meeting-types/{meetingTypeId}"
tags: ["meeting-types"]
---

# Update a meeting type (v2)

`PATCH /v2/meeting-types/{meetingTypeId}`

Partial update (`name`, `emoji`). **Requires `Idempotency-Key`.** Returns the updated entity: `{ data: { meeting_type: {...} } }`.

## Path parameters

- `meetingTypeId` string, uuid, required

## Headers

- `Idempotency-Key` string, required

## Request body

- object
  - `name` string
  - `emoji` string

## Response `200`

Successful response

- object
  - `data` object, required
    - `meeting_type` object, required
      - `id` string, uuid, required
      - `user_id` string
      - `name` string, required
      - `emoji` string, nullable
      - `created_at` union, required
        - string, date-time
        - unknown

## 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.

## Changes

- **2026-08-27** `a2f71a243839` — 1 info
  - api operation id `updateMeetingTypeV2` was added

[Change history](https://skmtc.dev/getdex/apis/dex-public-api/changes/v2/meeting-types/:meetingTypeId/patch.md)

---

[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)
