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

# Create Action Items (Batch)

> Create multiple action items in a single request. Maximum 50 per batch.



## OpenAPI

````yaml POST /v1/dev/user/action-items/batch
openapi: 3.1.0
info:
  title: Omi Developer API
  description: >-
    Programmatic access to your Omi data — memories, conversations, action
    items, and API keys. Build custom integrations, analytics dashboards, and
    automation workflows.
  version: 1.0.0
  contact:
    name: Omi
    url: https://omi.me
  license:
    name: MIT
    url: https://github.com/BasedHardware/omi/blob/main/LICENSE
servers:
  - url: https://api.omi.me
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Memories
    description: Read and write user memories — timeless facts, preferences, and insights.
  - name: Conversations
    description: Create and retrieve conversation transcripts with AI-generated summaries.
  - name: Folders
    description: Retrieve user-defined folders for organizing conversations.
  - name: Action Items
    description: Manage tasks and to-dos extracted from conversations or created manually.
  - name: API Keys
    description: Create, list, and revoke developer API keys.
paths:
  /v1/dev/user/action-items/batch:
    post:
      tags:
        - Action Items
      summary: Create action items (batch)
      description: Create multiple action items in a single request. Maximum 50 per batch.
      operationId: createActionItemsBatch
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BatchCreateActionItems'
            example:
              action_items:
                - description: Review Q1 report
                  due_at: '2025-12-10T17:00:00Z'
                - description: Schedule team meeting
      responses:
        '200':
          description: Batch creation result.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BatchActionItemsResponse'
              example:
                action_items:
                  - id: action_001
                    description: Review Q1 report
                  - id: action_002
                    description: Schedule team meeting
                created_count: 2
        '401':
          $ref: '#/components/responses/Unauthorized'
        '422':
          $ref: '#/components/responses/ValidationError'
components:
  schemas:
    BatchCreateActionItems:
      type: object
      required:
        - action_items
      properties:
        action_items:
          type: array
          items:
            $ref: '#/components/schemas/CreateActionItem'
          maxItems: 50
          description: List of action items to create (max 50).
    BatchActionItemsResponse:
      type: object
      properties:
        action_items:
          type: array
          items:
            $ref: '#/components/schemas/ActionItem'
        created_count:
          type: integer
          description: Number of action items created.
    CreateActionItem:
      type: object
      required:
        - description
      properties:
        description:
          type: string
          minLength: 1
          maxLength: 500
          description: The action item description.
        completed:
          type: boolean
          default: false
          description: Whether completed.
        due_at:
          type: string
          format: date-time
          description: Due date in ISO 8601 format.
    ActionItem:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier.
        description:
          type: string
          description: The action item text.
        completed:
          type: boolean
          description: Whether completed.
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        due_at:
          type:
            - string
            - 'null'
          format: date-time
          description: Due date (null if not set).
        completed_at:
          type:
            - string
            - 'null'
          format: date-time
          description: When completed (null if pending).
        conversation_id:
          type:
            - string
            - 'null'
          description: Associated conversation ID.
    ErrorResponse:
      type: object
      properties:
        detail:
          type: string
          description: Error description.
  responses:
    Unauthorized:
      description: Invalid or missing API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            detail: Invalid API key
    ValidationError:
      description: Validation error.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            detail: 'Validation error: content is required'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Developer API key. Get one from **Settings → Developer → Create Key** in
        the Omi app. Keys are prefixed with `omi_dev_`.

````