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

# Create a meeting

> Create a new meeting. Only past meetings can be logged via the API.



## OpenAPI

````yaml /api-reference/openapi.yaml post /v1/meetings
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:
    post:
      tags:
        - Meetings
      summary: Create a meeting
      description: Create a new meeting. Only past meetings can be logged via the API.
      parameters:
        - 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
              required:
                - book_id
                - title
                - start_time
              properties:
                book_id:
                  type: string
                  description: The book ID
                  example: abc123xyz
                title:
                  type: string
                  description: Meeting title
                  example: Client Review
                start_time:
                  type: string
                  format: date-time
                  description: Meeting start time (ISO8601). Must be in the past.
                  example: '2024-01-15T10:00:00Z'
                end_time:
                  type: string
                  format: date-time
                  description: Meeting end time (ISO8601)
                  example: '2024-01-15T11:00:00Z'
                notepad:
                  type: string
                  description: Meeting notes (markdown)
                  example: '## Agenda\n\n- Review portfolio'
                household_ids:
                  type: array
                  items:
                    type: string
                  description: Array of household IDs to link to this meeting
        required: true
      responses:
        '201':
          description: meeting created
          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
        '422':
          description: unprocessable entity - invalid payload
          content:
            application/json:
              schema:
                type: object
                required:
                  - error
                  - detail
                properties:
                  error:
                    type: string
                    description: Error code
                    enum:
                      - invalid_payload
                      - record_invalid
                      - parameter_missing
                  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

````