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

# Set note-taker automation

> Updates the AI note-taker automation mode. Changing the mode immediately schedules or cancels bots for your upcoming events to match the new setting.



## OpenAPI

````yaml PUT /settings/notetaker-automation
openapi: 3.1.0
info:
  title: Timeless Public API
  version: 0.1.0
  description: >-
    The Timeless API is a REST API served over HTTPS. All requests and responses
    use JSON, and all endpoints require authentication.
servers:
  - url: https://api.timeless.day/v1
    description: Production
security:
  - HTTPBearer: []
tags:
  - name: meetings
    description: Retrieve meetings, recordings, and transcripts.
  - name: rooms
    description: Retrieve rooms that group related meetings.
  - name: documents
    description: Retrieve AI-generated meeting documents.
  - name: upload
    description: Upload audio or video files for transcription.
  - name: webhooks
    description: Manage webhook subscriptions for event notifications.
  - name: settings
    description: Manage account-level settings such as AI note-taker automation.
paths:
  /settings/notetaker-automation:
    put:
      tags:
        - settings
      summary: Set note-taker automation
      description: >-
        Updates the AI note-taker automation mode. Changing the mode immediately
        schedules or cancels bots for your upcoming events to match the new
        setting.
      operationId: set_notetaker_automation
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NoteTakerAutomationUpdate'
            example:
              automation: JOIN_ALL_EVENTS
      responses:
        '200':
          description: The updated note-taker automation mode.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NoteTakerAutomationResponse'
              example:
                automation: JOIN_ALL_EVENTS
        '401':
          description: Authentication required.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Usage limit exceeded. Upgrade your plan to enable automation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Settings not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    NoteTakerAutomationUpdate:
      type: object
      title: NoteTakerAutomationUpdate
      required:
        - automation
      properties:
        automation:
          $ref: '#/components/schemas/NoteTakerAutomation'
    NoteTakerAutomationResponse:
      type: object
      title: NoteTakerAutomationResponse
      required:
        - automation
      properties:
        automation:
          $ref: '#/components/schemas/NoteTakerAutomation'
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              example: not_found
            message:
              type: string
              example: Resource not found
            details:
              type: array
              items:
                type: object
                properties:
                  field:
                    type: string
                  message:
                    type: string
          required:
            - code
            - message
      required:
        - error
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    NoteTakerAutomation:
      type: string
      title: NoteTakerAutomation
      description: >-
        How the AI note-taker decides which meetings to join:


        - `MANUAL` — the bot never joins automatically; schedule it per event
        with the bot endpoints.

        - `JOIN_AS_HOST` — the bot joins events you organize.

        - `JOIN_ALL_EVENTS` — the bot joins every event on your calendar.
      enum:
        - MANUAL
        - JOIN_AS_HOST
        - JOIN_ALL_EVENTS
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer
      description: >-
        API token from your [Timeless
        dashboard](https://my.timeless.day/api-token).

````