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

# Update chat settings



## OpenAPI

````yaml put /v1/chats/{id}
openapi: 3.0.0
info:
  title: Corebanq - Chat API
  description: API endpoints for real-time chat functionality
  version: 1.0.0
servers: []
security: []
paths:
  /v1/chats/{id}:
    put:
      summary: Update chat settings
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateChatInput'
      responses:
        '200':
          description: Chat updated successfully
components:
  schemas:
    UpdateChatInput:
      type: object
      properties:
        metadata:
          type: object
        settings:
          type: object
          properties:
            notifications:
              type: boolean
            muted:
              type: boolean

````