# Read Patient

> Perform Read Patient through ClaimSoft.

Source: [https://genhealth.ai/docs/workflows/integrations/claim-soft/claimsoft_read_patient](https://genhealth.ai/docs/workflows/integrations/claim-soft/claimsoft_read_patient)

Integration: [ClaimSoft](https://genhealth.ai/docs/workflows/integrations/claim-soft.md)

- Handler: `claimsoft_read_patient`

- Connection type: `claimsoft`

## Inputs

- `patient_id` — Patient Id (expression, required)
  Required literal value or workflow expression.

## Outputs

- `patient_id` — Patient Id
- `name` — Name
- `date_of_birth` — Date Of Birth
- `age` — Age
- `account_number` — Account Number
- `address` — Address
- `phone` — Phone
- `primary_language` — Primary Language
- `primary_payer` — Primary Payer
- `primary_policy_number` — Primary Policy Number
- `is_primary_medicare` — Is Primary Medicare
- `secondary_payer` — Secondary Payer
- `secondary_policy_number` — Secondary Policy Number
- `ar_balance` — Ar Balance
- `alerts` — Alerts
- `url` — Url
- `error` — Error

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": [
    "patient_id"
  ],
  "properties": {
    "patient_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "age": {},
    "url": {},
    "name": {},
    "error": {},
    "phone": {},
    "alerts": {},
    "address": {},
    "ar_balance": {},
    "patient_id": {},
    "date_of_birth": {},
    "primary_payer": {},
    "account_number": {},
    "secondary_payer": {},
    "primary_language": {},
    "is_primary_medicare": {},
    "primary_policy_number": {},
    "secondary_policy_number": {}
  },
  "additionalProperties": true
}
```
