---
title: "Update a meeting"
method: PATCH
path: "/v1/meetings/{id}"
tags: ["Meetings"]
---

# Update a meeting

`PATCH /v1/meetings/{id}`

Update an existing meeting. Only the provided fields are changed.

## Path parameters

- `id` string, required

## Headers

- `Idempotency-Key` string

## Request body

- object
  - `title` string — Meeting title
  - `notepad` string — Meeting notes (markdown). Pass null or an empty string to clear.
  - `meeting_type` string — Meeting type. Must be an active meeting type key for the company (defaults: other, prospect, client_review, client_check_in, internal, coi).
  - `household_ids` string[] — Household IDs to link to this meeting. Replaces the full set of linked households; pass an empty array to unlink all.

## Response `200`

meeting updated

- object
  - `id` string, required
  - `title` string, required
  - `start_time` string, date-time, nullable
  - `end_time` string, date-time, nullable
  - `duration_seconds` integer
  - `meeting_link` string, nullable
  - `meeting_source` 'instant' | 'calendar_event' | 'imported' | 'logged', nullable
  - `meeting_type` string
  - `book_id` string, required
  - `households` object[], required
    - `id` string
    - `name` string
  - `users` object[]
    - `id` string
    - `email` string
    - `first_name` string, nullable
    - `last_name` string, nullable
  - `has_transcript` boolean, required
  - `has_recordings` boolean, required
  - `quick_summary` string, nullable
  - `ai_summary` string, nullable
  - `notepad` string, nullable
  - `transcript` unknown[], nullable
    - unknown
  - `event_participants` unknown[], nullable
    - unknown
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required

## Other responses

- `400` — bad request - invalid JSON
- `401` — unauthorized - missing or invalid token
- `403` — forbidden
- `404` — not found

---

[API](https://skmtc.net/slant/apis/slant-public-api-v1.md) · [All operations](https://skmtc.net/slant/apis/slant-public-api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/slant/slant-public-api-v1/revisions/b56e0d137554/schema)
