Read Patient PCP
Perform Read Patient PCP through eClinicalWorks.
ecw_read_patient_pcpreadeclinicalworks
Inputs
- Patient Id
patient_idtextrequiredRequired text value.
- Encounter Id
encounter_idtextrequiredRequired text value.
Outputs
foundFoundpcp_idPcp Idpcp_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
}