Read Patient Insurance
Perform Read Patient Insurance through athenahealth.
athena_read_patient_insuranceread
Inputs
- Patient Id
patient_idexpressionrequiredRequired literal value or workflow expression.
- Chart Id
chart_idexpressionOptional literal value or workflow expression.
- Department Id
department_idexpressionOptional literal value or workflow expression.
- Include Sensitive Fields
include_sensitive_fieldsbooleanOptional true-or-false value.
Default:
false
Outputs
successSuccesspatient_idPatient Idchart_idChart IdathenaAthenapolicy_countPolicy CountcountCountpoliciesPoliciesinsurance_cardsInsurance Cardsinsurance_sourceInsurance Sourcehas_insurance_policyHas Insurance Policyprimary_policyPrimary Policysecondary_policySecondary Policytertiary_policyTertiary Policyprimary_payer_namePrimary Payer Nameprimary_payer_idPrimary Payer Idsecondary_payer_nameSecondary Payer Namesecondary_payer_idSecondary Payer Idinsurance_removal_request_countInsurance Removal Request CounterrorErrorerror_messageError Message
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": {
"chart_id": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"patient_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"department_id": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"include_sensitive_fields": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"count": {},
"error": {},
"athena": {},
"success": {},
"chart_id": {},
"policies": {},
"patient_id": {},
"policy_count": {},
"error_message": {},
"primary_policy": {},
"insurance_cards": {},
"tertiary_policy": {},
"insurance_source": {},
"primary_payer_id": {},
"secondary_policy": {},
"primary_payer_name": {},
"secondary_payer_id": {},
"has_insurance_policy": {},
"secondary_payer_name": {},
"insurance_removal_request_count": {}
},
"additionalProperties": true
}