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

# Create a Markdown note

> Create a client note from Markdown content and return the created note ID.



## OpenAPI

````yaml /developer-docs/api/openapi.json post /v1/public/clients/{client_id}/notes
openapi: 3.1.0
info:
  title: Everbility Public API
  version: 1.0.0
  description: >-
    Pull reports from Everbility, upload notes and files, poll asynchronous
    jobs, and generate reports from saved templates. Partner endpoints let
    approved platforms connect practices with OAuth 2.0, launch report-writing
    sessions, receive signed lifecycle webhooks, and retrieve completed
    documents.
servers:
  - url: https://api.everbility.com
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/public/clients/{client_id}/notes:
    post:
      tags:
        - external
      summary: Create a Markdown note
      description: >-
        Create a client note from Markdown content and return the created note
        ID.
      operationId: create_markdown_note_v1_external_clients__client_id__notes_post
      parameters:
        - name: client_id
          in: path
          required: true
          schema:
            type: integer
            title: Client Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExternalMarkdownNoteCreateInput'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExternalNoteCreateResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - bearerAuth: []
components:
  schemas:
    ExternalMarkdownNoteCreateInput:
      properties:
        title:
          type: string
          title: Title
        markdown:
          type: string
          title: Markdown
      type: object
      required:
        - title
        - markdown
      title: ExternalMarkdownNoteCreateInput
    ExternalNoteCreateResponse:
      properties:
        note_id:
          type: string
          title: Note Id
      type: object
      required:
        - note_id
      title: ExternalNoteCreateResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: >-
        Use a Clerk-backed Everbility user or organisation API key directly as
        the bearer token.

````