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

# tasks.list



## OpenAPI

````yaml POST /tasks/list
openapi: 3.1.0
info:
  title: Supersonic CRM API
  description: 62 tools for managing your CRM data. Call via CLI, REST, or MCP.
  version: 1.0.0
servers:
  - url: https://api.supersonic.cv
    description: Production
security:
  - bearerAuth: []
paths:
  /tasks/list:
    post:
      tags:
        - tasks
      summary: >-
        List CRM tasks with filters: status, assigned_to_me, due_today,
        due_before, search
      operationId: tasks.list
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                status:
                  type: string
                  enum:
                    - todo
                    - in_progress
                    - done
                  description: Filter by status
                priority:
                  type: string
                  enum:
                    - low
                    - medium
                    - high
                    - urgent
                assigned_to_me:
                  type: boolean
                  description: Show only my tasks
                assigned_to:
                  type: string
                  description: Member UUID
                due_today:
                  type: boolean
                due_before:
                  type: string
                  description: ISO datetime
                search:
                  type: string
                record_id:
                  type: string
                  description: Filter by linked record
                page:
                  type: integer
                per_page:
                  type: integer
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Validation error
        '403':
          description: Permission denied
        '429':
          description: Rate limit exceeded
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'API key: supersonic_live_...'

````