Skip to documentation
ClearPathMD integration

Get Patient Notes

Perform Get Patient Notes through ClearPathMD.

View as Markdown
clearpath_get_patient_notes
readclearpathmd

Inputs

  • patient_id
    expressionrequired
    Patient Id

    Required literal value or workflow expression.

  • page_size
    number
    Page Size

    Optional numeric value.

    Default: 100

Outputs

  • successSuccess
  • dataData
  • messageMessage
  • errorError

Output schema completeness: best_effort_declared

Safety

External effect
read
Confirmation recommended
No
Retry safe
Yes
Dry run supported
No

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "required": [
    "patient_id"
  ],
  "properties": {
    "page_size": {
      "type": "number",
      "default": 100,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "patient_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "data": {},
    "error": {},
    "message": {},
    "success": {}
  },
  "additionalProperties": true
}
View all ClearPathMD actions