Skip to documentation
ClearPathMD integration

Search Patient

Perform Search Patient through ClearPathMD.

View as Markdown
clearpath_search_patient
readclearpathmd

Inputs

  • first_name
    text
    First Name

    Optional text value.

  • last_name
    text
    Last Name

    Optional text value.

  • date_of_birth
    text
    Date Of Birth

    Optional text value.

  • patient_id
    expression
    Patient Id

    Optional literal value or workflow expression.

  • page_size
    number
    Page Size

    Optional numeric value.

    Default: 15

Outputs

  • successSuccess
  • dataData
  • 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",
  "properties": {
    "last_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "page_size": {
      "type": "number",
      "default": 15,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "first_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "patient_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "date_of_birth": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "data": {},
    "error": {},
    "success": {}
  },
  "additionalProperties": true
}
View all ClearPathMD actions