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

# Update Action Item

> Update an action item.

- **action_item_id**: The ID of the action item to update
- **description**: New description (optional)
- **completed**: New completion status (optional)
- **due_at**: New due date (optional, set to null to remove)



## OpenAPI

````yaml PATCH /v1/dev/user/action-items/{action_item_id}
openapi: 3.1.0
info:
  contact:
    name: Omi
    url: https://omi.me/
  description: >-
    Programmatic access to your Omi data - memories, conversations, action
    items, goals, folders, and API keys. Build custom integrations, analytics
    dashboards, and automation workflows.
  license:
    name: MIT
    url: https://github.com/BasedHardware/omi/blob/main/LICENSE
  title: Omi Developer API
  version: 1.0.0
servers:
  - description: Production
    url: https://api.omi.me
security: []
tags:
  - description: Read and write user memories - timeless facts, preferences, and insights.
    name: Memories
  - description: Create and retrieve conversation transcripts with AI-generated summaries.
    name: Conversations
  - description: Retrieve user-defined folders for organizing conversations.
    name: Folders
  - description: Manage tasks and to-dos extracted from conversations or created manually.
    name: Action Items
  - description: Manage user goals and progress history.
    name: Goals
  - description: Create, list, and revoke developer API keys.
    name: API Keys
paths:
  /v1/dev/user/action-items/{action_item_id}:
    patch:
      tags:
        - Action Items
      summary: Update Action Item
      description: |-
        Update an action item.

        - **action_item_id**: The ID of the action item to update
        - **description**: New description (optional)
        - **completed**: New completion status (optional)
        - **due_at**: New due date (optional, set to null to remove)
      operationId: updateActionItem
      parameters:
        - in: path
          name: action_item_id
          required: true
          schema:
            title: Action Item Id
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateActionItemRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeveloperActionItem'
          description: Successful Response
        '401':
          $ref: '#/components/responses/Error401'
        '403':
          $ref: '#/components/responses/Error403'
        '404':
          $ref: '#/components/responses/Error404'
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - developerApiKey: []
components:
  schemas:
    UpdateActionItemRequest:
      properties:
        completed:
          anyOf:
            - type: boolean
            - type: 'null'
          description: New completion status
          title: Completed
        description:
          anyOf:
            - maxLength: 500
              minLength: 1
              type: string
            - type: 'null'
          description: New description
          title: Description
        due_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          description: New due date (ISO format with timezone)
          title: Due At
      title: UpdateActionItemRequest
      type: object
    DeveloperActionItem:
      properties:
        completed:
          title: Completed
          type: boolean
        completed_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Completed At
        conversation_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Conversation Id
        created_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Created At
        description:
          title: Description
          type: string
        due_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Due At
        id:
          title: Id
          type: string
        updated_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Updated At
      required:
        - id
        - description
        - completed
      title: DeveloperActionItem
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ErrorResponse:
      properties:
        detail:
          anyOf:
            - type: string
            - type: array
            - type: object
          description: Error detail returned by the API.
      required:
        - detail
      title: ErrorResponse
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  responses:
    Error401:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
      description: Missing or invalid authentication credentials.
    Error403:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
      description: Authenticated, but the token does not grant the required scope.
    Error404:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
      description: Requested resource was not found.
  securitySchemes:
    developerApiKey:
      bearerFormat: Omi Developer API key
      description: 'Send `Authorization: Bearer <omi_developer_api_key>`.'
      scheme: bearer
      type: http

````