# Resolve Strategy Actions

> Perform Resolve Strategy Actions through GenHealth.

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

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

- Handler: `auto_push_resolve_strategy_actions`

## Inputs

- `document_id` — Document Id (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `document_id` — Document Id
- `service_type` — Service Type
- `prescription_required` — Prescription Required
- `patient_status` — Patient Status
- `patient_note_actions` — Patient Note Actions
- `patient_note_count` — Patient Note Count
- `skipped_note_texts` — Skipped Note Texts
- `task_title` — Task Title
- `task_description` — Task Description
- `patient_id` — Patient Id
- `data_fingerprint` — Data Fingerprint
- `error` — Error

Output schema completeness: `best_effort_declared`

## Safety

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

## Schemas

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

### Input schema

```json
{
  "type": "object",
  "required": [
    "document_id"
  ],
  "properties": {
    "document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "patient_id": {},
    "task_title": {},
    "document_id": {},
    "service_type": {},
    "patient_status": {},
    "data_fingerprint": {},
    "task_description": {},
    "patient_note_count": {},
    "skipped_note_texts": {},
    "patient_note_actions": {},
    "prescription_required": {}
  },
  "additionalProperties": true
}
```
