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

# POST /medical_notes



## OpenAPI

````yaml /openapi/nimbo_api.yml post /medical_notes
openapi: 3.0.0
info:
  title: Nimbo API
  version: 1.0.0
  description: >-
    Nimbo API reference. Use the API host and integration access provided by
    Nimbo.
servers:
  - url: https://api.example.test
    description: Reference only; confirm your integration host with Nimbo
security: []
paths:
  /medical_notes:
    post:
      tags:
        - Medical Notes
      summary: POST /medical_notes
      operationId: legacy_nimbo_api_post__medical_notes
      parameters:
        - name: Content-Transfer-Encoding
          in: header
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                medical_note:
                  type: object
                  properties:
                    person_id:
                      type: string
                      format: color
                    consultation_id:
                      nullable: true
                    comment:
                      type: string
                    note_type:
                      type: string
                    created_at:
                      nullable: true
                    voice_note_url:
                      nullable: true
                    account_id:
                      type: string
      responses:
        '200':
          description: Successful response
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````