> ## Documentation Index
> Fetch the complete documentation index at: https://docs.slant.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Update a meeting

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



## OpenAPI

````yaml /api-reference/openapi.yaml patch /v1/meetings/{id}
openapi: 3.0.1
info:
  title: Slant Public API V1
  version: v1
  description: Public API for creating and managing resources in Slant
  contact:
    name: Slant API Support
    email: api@slant.com
servers:
  - url: https://api.slant.app
security:
  - bearer: []
paths:
  /v1/meetings/{id}:
    patch:
      tags:
        - Meetings
      summary: Update a meeting
      description: Update an existing meeting. Only the provided fields are changed.
      parameters:
        - name: id
          in: path
          description: The meeting ID
          required: true
          example: 123e4567-e89b-12d3-a456-426614174000
          schema:
            type: string
        - name: Idempotency-Key
          in: header
          required: false
          schema:
            type: string
          description: >-
            Unique key to ensure idempotent request handling. If a request with
            the same key was already processed, the original response will be
            returned.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                title:
                  type: string
                  description: Meeting title
                  example: Updated meeting title
                notepad:
                  type: string
                  description: >-
                    Meeting notes (markdown). Pass null or an empty string to
                    clear.
                  example: '## Agenda\n\n- Review portfolio'
                meeting_type:
                  type: string
                  description: >-
                    Meeting type. Must be an active meeting type key for the
                    company (defaults: other, prospect, client_review,
                    client_check_in, internal, coi).
                  example: client_review
                household_ids:
                  type: array
                  items:
                    type: string
                  description: >-
                    Household IDs to link to this meeting. Replaces the full set
                    of linked households; pass an empty array to unlink all.
        required: true
      responses:
        '200':
          description: meeting updated
          content:
            application/json:
              schema:
                type: object
                required:
                  - id
                  - title
                  - book_id
                  - households
                  - has_transcript
                  - has_recordings
                  - created_at
                  - updated_at
                properties:
                  id:
                    type: string
                  title:
                    type: string
                  start_time:
                    type: string
                    format: date-time
                    nullable: true
                  end_time:
                    type: string
                    format: date-time
                    nullable: true
                  duration_seconds:
                    type: integer
                  meeting_link:
                    type: string
                    nullable: true
                  meeting_source:
                    type: string
                    enum:
                      - instant
                      - calendar_event
                      - imported
                      - logged
                    nullable: true
                  meeting_type:
                    type: string
                  book_id:
                    type: string
                  households:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        name:
                          type: string
                  users:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        email:
                          type: string
                        first_name:
                          type: string
                          nullable: true
                        last_name:
                          type: string
                          nullable: true
                  has_transcript:
                    type: boolean
                  has_recordings:
                    type: boolean
                  quick_summary:
                    type: string
                    nullable: true
                  ai_summary:
                    type: string
                    nullable: true
                  notepad:
                    type: string
                    nullable: true
                  transcript:
                    type: array
                    nullable: true
                  event_participants:
                    type: array
                    nullable: true
                  created_at:
                    type: string
                    format: date-time
                  updated_at:
                    type: string
                    format: date-time
        '400':
          description: bad request - invalid JSON
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                  - detail
                properties:
                  error:
                    type: string
                    description: Error code
                    enum:
                      - invalid_json
                  detail:
                    oneOf:
                      - type: string
                        description: Human-readable error description
                      - type: array
                        items:
                          type: string
                        description: Array of validation error messages
        '401':
          description: unauthorized - missing or invalid token
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                  - detail
                properties:
                  error:
                    type: string
                    description: Error code
                    enum:
                      - token_missing
                      - token_invalid
                  detail:
                    oneOf:
                      - type: string
                        description: Human-readable error description
                      - type: array
                        items:
                          type: string
                        description: Array of validation error messages
        '403':
          description: forbidden
        '404':
          description: not found
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                  - detail
                properties:
                  error:
                    type: string
                    description: Error code
                    enum:
                      - record_not_found
                  detail:
                    oneOf:
                      - type: string
                        description: Human-readable error description
                      - type: array
                        items:
                          type: string
                        description: Array of validation error messages
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
      bearerFormat: OAuth
      description: OAuth 2.0 Bearer Token from Clerk authentication

````