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

# Retrieve Reports Internal Note

> Retrieve a specific internal note for a report

<Note>
  Internal notes are visible only to practice staff and are not shown to patients.
</Note>


## OpenAPI

````yaml get /api/2.0/reports/{id}/internal_notes/{note_id}/
openapi: 3.1.0
info:
  contact:
    name: Elation Health
    url: https://www.elationhealth.com/
  description: Elation Health API v2.0
  title: Patient Document API
  version: 2.0.0
servers:
  - description: Sandbox Server
    url: https://sandbox.elationemr.com
  - description: Production Server
    url: https://api.app.elationemr.com
security: []
paths:
  /api/2.0/reports/{id}/internal_notes/{note_id}/:
    get:
      tags:
        - Report Internal Notes
      summary: Retrieve Reports Internal Note
      description: Retrieve a specific internal note for a report
      operationId: reports_internal_notes_retrieve
      parameters:
        - description: Report ID
          in: path
          name: id
          required: true
          schema:
            type: integer
        - description: Internal Note ID
          in: path
          name: note_id
          required: true
          schema:
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalPracticeNoteSerializerProxy'
          description: ''
      security:
        - oauth2: []
components:
  schemas:
    InternalPracticeNoteSerializerProxy:
      properties:
        document:
          description: The report (document) ID this note belongs to
          readOnly: true
          type: integer
        id:
          description: The id of the internal note.
          readOnly: true
          type: integer
        text:
          description: The internal note text content
          maxLength: 256
          type: string
      required:
        - text
      type: object
  securitySchemes:
    oauth2:
      flows:
        clientCredentials:
          scopes:
            act_as_user: >-
              Impersonate a provider via X-On-Behalf-Of (combinable with apiv2
              or system scopes)
            apiv2: Full access to the API
            system/{resource_name}.read: Read access to a specific resource
            system/{resource_name}.write: Write access to a specific resource
          tokenUrl: /api/2.0/oauth2/token/
      type: oauth2

````