# Search Patient

> Perform Search Patient through ClaimSoft.

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

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

- Handler: `claimsoft_search_patient`

- Connection type: `claimsoft`

## Inputs

- `first_name` — First Name (text)
  Optional text value.
- `last_name` — Last Name (text)
  Optional text value.
- `account_id` — Account Id (text)
  Optional text value.
- `order_number` — Order Number (text)
  Optional text value.

## Outputs

- `total` — Total
- `patients` — Patients
- `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",
  "properties": {
    "last_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "account_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "first_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "order_number": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "total": {},
    "patients": {}
  },
  "additionalProperties": true
}
```
