# Resolve Patient Facility

> Perform Resolve Patient Facility through GenHealth.

Source: [https://genhealth.ai/docs/workflows/integrations/gen-health/intake_resolve_patient_facility](https://genhealth.ai/docs/workflows/integrations/gen-health/intake_resolve_patient_facility)

Integration: [GenHealth](https://genhealth.ai/docs/workflows/integrations/gen-health.md)

- Handler: `intake_resolve_patient_facility`

## 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.
- `precheck_payload` — Precheck Payload (json)
  Optional JSON value.
- `delivery_address` — Delivery Address (text)
  Optional text value.
- `patient_facility_payload` — Patient Facility Payload (json)
  Optional JSON value.
- `note_facility_name` — Note Facility Name (text)
  Optional text value.
- `note_facility_updates` — Note Facility Updates (text)
  Optional text value.
- `note_indicates_private_residence` — Note Indicates Private Residence (boolean)
  Optional true-or-false value.
  Default: `false`
- `account_key` — Account Key (text)
  Optional text value.
- `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: `read`
- Confirmation recommended: no
- Retry safe: yes
- 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"
    },
    "patient_state": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "patient_context": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "delivery_address": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "precheck_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "note_facility_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "note_facility_updates": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "patient_facility_payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "note_indicates_private_residence": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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