Skip to documentation
ClearPathMD integration

Get Patient Documents

Perform Get Patient Documents through ClearPathMD.

View as Markdown
clearpath_get_patient_documents
readclearpathmd

Inputs

  • patient_id
    expressionrequired
    Patient Id

    Required literal value or workflow expression.

  • page_size
    number
    Page Size

    Optional numeric value.

    Default: 50

Outputs

  • successSuccess
  • 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": 50,
      "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": {
    "error": {},
    "success": {}
  },
  "additionalProperties": true
}
View all ClearPathMD actions