# Set Patient Dropdowns

> Perform Set Patient Dropdowns through Brightree.

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

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

- Handler: `intake_set_patient_dropdowns`

- 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.
- `patient_state_snapshot` — Patient State Snapshot (json)
  Optional JSON value.
- `account_key` — Account Key (text)
  Optional text value.
- `dry_run` — Dry Run (boolean)
  Optional true-or-false value.
  Default: `false`
- `is_private_residence` — Is Private Residence (boolean)
  Optional true-or-false value.
  Default: `false`
- `personal_state_payload` — Personal State Payload (json)
  Optional JSON value.
- `account_group` — Account Group (text)
  Optional text value.
- `set_dropdowns` — Set Dropdowns (boolean)
  Optional true-or-false value.
  Default: `true`

## 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"
    },
    "facility_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "is_private_residence": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "patient_state_snapshot": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "personal_state_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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