Skip to documentation
eClinicalWorks integration

Read Patient PCP

Perform Read Patient PCP through eClinicalWorks.

View as Markdown
ecw_read_patient_pcp
readeclinicalworks

Inputs

  • patient_id
    textrequired
    Patient Id

    Required text value.

  • encounter_id
    textrequired
    Encounter Id

    Required text value.

Outputs

  • foundFound
  • pcp_idPcp Id
  • pcp_namePcp Name

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",
    "encounter_id"
  ],
  "properties": {
    "patient_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "encounter_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "found": {},
    "pcp_id": {},
    "pcp_name": {}
  },
  "additionalProperties": true
}
View all eClinicalWorks actions