Skip to documentation
athenahealth integration

Read Patient Insurance

Perform Read Patient Insurance through athenahealth.

View as Markdown
athena_read_patient_insurance
read

Inputs

  • patient_id
    expressionrequired
    Patient Id

    Required literal value or workflow expression.

  • chart_id
    expression
    Chart Id

    Optional literal value or workflow expression.

  • department_id
    expression
    Department Id

    Optional literal value or workflow expression.

  • include_sensitive_fields
    boolean
    Include Sensitive Fields

    Optional true-or-false value.

    Default: false

Outputs

  • successSuccess
  • patient_idPatient Id
  • chart_idChart Id
  • athenaAthena
  • policy_countPolicy Count
  • countCount
  • policiesPolicies
  • insurance_cardsInsurance Cards
  • insurance_sourceInsurance Source
  • has_insurance_policyHas Insurance Policy
  • primary_policyPrimary Policy
  • secondary_policySecondary Policy
  • tertiary_policyTertiary Policy
  • primary_payer_namePrimary Payer Name
  • primary_payer_idPrimary Payer Id
  • secondary_payer_nameSecondary Payer Name
  • secondary_payer_idSecondary Payer Id
  • insurance_removal_request_countInsurance Removal Request Count
  • errorError
  • error_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
}
View all athenahealth actions