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

# Update note

> Update an existing note's content or `occurredAt` timestamp. The note's
parent company or person cannot be changed.




## OpenAPI

````yaml /openapi.yaml put /notes/{notePublicId}
openapi: 3.1.0
info:
  title: Concrete API
  description: >
    The Concrete API provides programmatic access to view and create select data
    in Concrete.  The API is primarily intended to facilitate data pipeline
    automations for portfolio management.
  version: 1.0.0
  license:
    name: MIT
  contact:
    name: Concrete Support
    email: support@concretehq.com
    url: https://concretehq.com
servers:
  - url: https://app.concretehq.com/api/v1
    description: Production server
security:
  - bearerAuth: []
tags:
  - name: Authentication
    description: Authentication and member information
  - name: Companies
    description: Portfolio company management
  - name: Funds
    description: Fund and portfolio management
  - name: Meetings
    description: External meeting imports
  - name: Notes
    description: Notes attached to companies and people
  - name: Connections
    description: Data connections and message uploads
  - name: Trackers
    description: Tracked metrics and their per-company value history
paths:
  /notes/{notePublicId}:
    put:
      tags:
        - Notes
      summary: Update note
      description: |
        Update an existing note's content or `occurredAt` timestamp. The note's
        parent company or person cannot be changed.
      operationId: updateNote
      parameters:
        - name: notePublicId
          in: path
          description: Note public ID
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NoteUpdateInput'
      responses:
        '200':
          description: Note updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Note'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    NoteUpdateInput:
      type: object
      description: >-
        All fields are optional; the note's parent company/person cannot be
        changed.
      properties:
        content:
          type: string
          minLength: 1
          description: >-
            Updated note content in Markdown. Rendered as rich text in the
            Concrete app.
          example: Revised meeting notes…
        occurredAt:
          type: string
          format: date-time
          description: Updated occurredAt timestamp (ISO 8601)
          example: '2026-04-16T09:00:00Z'
    Note:
      type: object
      description: A note attached to a company or person.
      required:
        - publicId
        - content
        - occurredAt
        - topics
      properties:
        publicId:
          type: string
          description: Note public ID
          example: abc123def456
        content:
          type: string
          description: Note content in Markdown. Rendered as rich text in the Concrete app.
          example: Met with the founder; discussed **Q4 hiring plan**.
        occurredAt:
          type: string
          format: date-time
          description: When the note's subject matter occurred (ISO 8601)
          example: '2026-04-15T14:00:00Z'
        topics:
          type: array
          nullable: true
          description: Topics categorizing the note's subject matter
          items:
            $ref: '#/components/schemas/NoteTopic'
          example:
            - board-meeting
    NoteTopic:
      type: string
      description: Categorization for a note's subject matter.
      enum:
        - periodic-company-update
        - company-announcement
        - board-meeting
        - adhoc-company-update
        - legal-communication
        - other
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: Human-readable error message
          example: Not found
  responses:
    BadRequest:
      description: Bad request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key authentication using Bearer token format

````