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

# List Command Editor Threads

> List persisted command editor workflow threads for this command.



## OpenAPI

````yaml https://analyst.heyhumm.ai/api/openapi.json get /commands/{command_id}/editor/thread
openapi: 3.1.0
info:
  title: Analyst API
  description: API for the Analyst service with proper organization-scoped permissions
  version: 1.0.0
servers:
  - url: https://analyst.heyhumm.ai
security: []
paths:
  /commands/{command_id}/editor/thread:
    get:
      tags:
        - commands
      summary: List Command Editor Threads
      description: List persisted command editor workflow threads for this command.
      operationId: list_command_editor_threads_commands__command_id__editor_thread_get
      parameters:
        - name: command_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            description: Command ID
            title: Command Id
          description: Command ID
        - name: organization_id
          in: query
          required: true
          schema:
            type: string
            title: Organization Id
        - name: query
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Optional title/message search query
            title: Query
          description: Optional title/message search query
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            description: Pagination offset
            default: 0
            title: Offset
          description: Pagination offset
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 50
            minimum: 1
            description: Page size
            default: 20
            title: Limit
          description: Page size
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CommandEditorThreadsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    CommandEditorThreadsResponse:
      properties:
        threads:
          items:
            $ref: '#/components/schemas/CommandEditorThreadResponse'
          type: array
          title: Threads
        next_offset:
          anyOf:
            - type: integer
            - type: 'null'
          title: Next Offset
        has_more:
          type: boolean
          title: Has More
          default: false
      type: object
      required:
        - threads
      title: CommandEditorThreadsResponse
      description: Paginated command editor workflow threads.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CommandEditorThreadResponse:
      properties:
        id:
          type: string
          title: Id
        organization_id:
          type: string
          title: Organization Id
        user_id:
          type: string
          title: User Id
        workflow_type:
          type: string
          title: Workflow Type
        title:
          type: string
          title: Title
        status:
          type: string
          title: Status
        last_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Message
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        applied_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Applied At
        archived_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Archived At
      type: object
      required:
        - id
        - organization_id
        - user_id
        - workflow_type
        - title
        - status
        - created_at
        - updated_at
      title: CommandEditorThreadResponse
      description: Persisted command editor workflow thread metadata.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````