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

# Import calls from a local CSV/JSONL: meeting fields plus transcript, action items and attendees per row

> Import calls from a local CSV/JSONL: meeting fields plus transcript, action items and attendees per row.



## OpenAPI

````yaml /api-reference/openapi.json post /local/meetings/import
openapi: 3.1.0
info:
  title: Dench API
  version: 1.0.0
  description: >-
    Versioned Dench workspace API. The operation registry is shared with the
    Dench CLI parity layer, so every CLI command maps to an endpoint here.
servers:
  - url: https://www.dench.com/api/v1
security: []
tags:
  - name: agent-config
    description: Agent Config operations.
  - name: approvals
    description: Approvals operations.
  - name: apps
    description: Apps operations.
  - name: auth
    description: Auth operations.
  - name: billing
    description: Billing operations.
  - name: browser
    description: Browser operations.
  - name: campaigns
    description: Campaigns operations.
  - name: chat
    description: Chat operations.
  - name: crm
    description: Crm operations.
  - name: email
    description: Email operations.
  - name: files
    description: Files operations.
  - name: gateway
    description: Gateway operations.
  - name: lists
    description: Lists operations.
  - name: local
    description: Local operations.
  - name: meetings
    description: Meetings operations.
  - name: members
    description: Members operations.
  - name: memory
    description: Memory operations.
  - name: meta
    description: Meta operations.
  - name: notifications
    description: Notifications operations.
  - name: routines
    description: Routines operations.
  - name: workspace
    description: Workspace operations.
paths:
  /local/meetings/import:
    post:
      tags:
        - local
      summary: >-
        Import calls from a local CSV/JSONL: meeting fields plus transcript,
        action items and attendees per row
      description: >-
        Import calls from a local CSV/JSONL: meeting fields plus transcript,
        action items and attendees per row.
      operationId: meetings_import
      responses:
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '409':
          description: >-
            Local-only CLI operation. Reads a CSV/JSONL from the caller's local
            filesystem. Over the API: POST /crm/objects/meeting/entries/batch
            with seedKey per row, then POST
            /meetings/{meetingEntryId}/transcript, POST …/action-items and PUT
            …/participants for each created meeting.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
              example:
                error:
                  message: >-
                    Reads a CSV/JSONL from the caller's local filesystem. Over
                    the API: POST /crm/objects/meeting/entries/batch with
                    seedKey per row, then POST
                    /meetings/{meetingEntryId}/transcript, POST …/action-items
                    and PUT …/participants for each created meeting.
                  type: invalid_request_error
                  code: local_only
        '500':
          $ref: '#/components/responses/InternalError'
components:
  responses:
    BadRequest:
      description: Invalid request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    Unauthorized:
      description: Missing or invalid authentication
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    NotFound:
      description: Operation or resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
    InternalError:
      description: Server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
  schemas:
    ApiError:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - message
            - type
            - code
          properties:
            message:
              type: string
            type:
              type: string
            code:
              type: string
            details: {}

````