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



## OpenAPI

````yaml POST /notes/create
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/create:
    post:
      tags:
        - notes
      summary: >-
        Log a note, call, meeting, or any activity to the timeline of one or
        more records. Use this to record call summaries, meeting notes,
        follow-up reminders, etc.
      operationId: notes.create
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                title:
                  type: string
                  description: Note title (e.g. 'Call with John — discussed pricing')
                body:
                  type: string
                  description: Full note text / call summary / meeting notes
                type:
                  type: string
                  enum:
                    - note
                    - call
                    - meeting
                    - email
                    - custom
                  description: 'Activity type (default: note)'
                record_ids:
                  type: array
                  items:
                    type: string
                  description: >-
                    Record UUIDs to attach this note to (contacts, companies,
                    deals)
                occurred_at:
                  type: string
                  description: 'ISO datetime when this happened (default: now)'
                metadata:
                  type: object
                  description: Extra data (duration, outcome, etc.)
              required:
                - title
                - record_ids
      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_...'

````