# Get Patient Insurance

> Perform Get Patient Insurance through Bonafide.

Source: [https://genhealth.ai/docs/workflows/integrations/bonafide/bonafide_get_patient_insurance](https://genhealth.ai/docs/workflows/integrations/bonafide/bonafide_get_patient_insurance)

Integration: [Bonafide](https://genhealth.ai/docs/workflows/integrations/bonafide.md)

- Handler: `bonafide_get_patient_insurance`

- Connection type: `bonafide`

## Inputs

- `customer_id` — Customer Id (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `customer_id` — Customer Id
- `carrier_name` — Carrier Name
- `carrier_no` — Carrier No
- `member_id` — Member Id
- `group_id` — Group Id
- `group_name` — Group Name
- `patient_first_name` — Patient First Name
- `patient_last_name` — Patient Last Name
- `patient_birth_date` — Patient Birth Date
- `patient_relationship` — Patient Relationship
- `mbi` — Mbi
- `secondary_carrier_name` — Secondary Carrier Name
- `tertiary_carrier_name` — Tertiary Carrier Name
- `message` — Message
- `error_message` — Error 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

```json
{
  "type": "object",
  "required": [
    "customer_id"
  ],
  "properties": {
    "customer_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "mbi": {},
    "message": {},
    "success": {},
    "group_id": {},
    "member_id": {},
    "carrier_no": {},
    "group_name": {},
    "customer_id": {},
    "carrier_name": {},
    "error_message": {},
    "patient_last_name": {},
    "patient_birth_date": {},
    "patient_first_name": {},
    "patient_relationship": {},
    "tertiary_carrier_name": {},
    "secondary_carrier_name": {}
  },
  "additionalProperties": true
}
```
