# Verify Patient Setup

> Perform Verify Patient Setup through Brightree.

Source: [https://genhealth.ai/docs/workflows/integrations/brightree/intake_verify_patient_setup](https://genhealth.ai/docs/workflows/integrations/brightree/intake_verify_patient_setup)

Integration: [Brightree](https://genhealth.ai/docs/workflows/integrations/brightree.md)

- Handler: `intake_verify_patient_setup`

- Connection type: `brightree`

## Inputs

- `patient_id` — Patient Id (text)
  Optional text value.
- `patient_state` — Patient State (text)
  Optional text value.
- `patient_key` — Patient Key (text)
  Optional text value.
- `patient_context` — Patient Context (json)
  Optional JSON value.
- `facility_payload` — Facility Payload (json)
  Optional JSON value.
- `facility_set_payload` — Facility Set Payload (json)
  Optional JSON value.
- `marketing_referral_payload` — Marketing Referral Payload (json)
  Optional JSON value.
- `billing_address_payload` — Billing Address Payload (json)
  Optional JSON value.
- `delivery_address_payload` — Delivery Address Payload (json)
  Optional JSON value.
- `dropdown_payload` — Dropdown Payload (json)
  Optional JSON value.
- `responsible_party_payload` — Responsible Party Payload (json)
  Optional JSON value.
- `primary_doctor_payload` — Primary Doctor Payload (json)
  Optional JSON value.
- `tax_zone_payload` — Tax Zone Payload (json)
  Optional JSON value.
- `account_group` — Account Group (text)
  Optional text value.
- `account_key` — Account Key (text)
  Optional text value.
- `set_dropdowns` — Set Dropdowns (boolean)
  Optional true-or-false value.
  Default: `true`
- `dry_run` — Dry Run (boolean)
  Optional true-or-false value.
  Default: `false`

## Outputs

No named outputs are declared for this action.

Output schema completeness: `unknown`

## Safety

- External effect: `write`
- Confirmation recommended: no
- Retry safe: no
- Dry run supported: yes

## Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

### Input schema

```json
{
  "type": "object",
  "properties": {
    "dry_run": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "patient_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "account_key": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "patient_key": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "account_group": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "patient_state": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "set_dropdowns": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "patient_context": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "dropdown_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "facility_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "tax_zone_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "facility_set_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "primary_doctor_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "billing_address_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "delivery_address_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "responsible_party_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "marketing_referral_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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