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

# notes.list



## OpenAPI

````yaml POST /notes/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:
  /notes/list:
    post:
      tags:
        - notes
      summary: >-
        List notes/activities: calls, meeting notes, custom notes. Filter by
        record, type, author, search. Excludes system-generated activities.
      operationId: notes.list
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                record_id:
                  type: string
                  description: Filter by linked record UUID
                type:
                  type: string
                  enum:
                    - note
                    - call
                    - meeting
                    - email
                    - custom
                author_id:
                  type: string
                  description: Filter by author member UUID
                mine:
                  type: boolean
                  description: Show only my notes
                search:
                  type: string
                  description: Search in title and description
                since:
                  type: string
                  description: ISO datetime — notes after this time
                until:
                  type: string
                  description: ISO datetime — notes before this time
                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_...'

````