# Retry Deferred Intake Step

> Perform Retry Deferred Intake Step through GenHealth.

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

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

- Handler: `intake_retry_deferred_fax`

## Inputs

- `order_id` — Order Id (text)
  Optional text value.
- `workflow_number` — Workflow Number (text)
  Optional text value.
- `patient_id` — Patient Id (text)
  Optional text value.
- `patient_state` — Patient State (text)
  Optional text value.
- `physician_docs` — Physician Docs (json)
  Optional JSON value.
- `doc_created_at` — Doc Created At (text)
  Optional text value.
- `document_ids` — Document Ids (expression)
  Optional literal value or workflow expression.
- `fax_submitted_at` — Fax Submitted At (text)
  Optional text value.
- `fax_verification_pending` — Fax Verification Pending (boolean)
  Optional true-or-false value.
  Default: `false`
- `fax_verification_attempt` — Fax Verification Attempt (number)
  Optional numeric value.
  Default: `1`
- `local_patient_id` — Local Patient Id (text)
  Optional text value.
- `retry_attempt` — Retry Attempt (number)
  Optional numeric value.
  Default: `1`
- `account_key` — Account Key (text)
  Optional text value.
- `dry_run` — Dry Run (boolean)
  Optional true-or-false value.
  Default: `false`

## Outputs

- `needs_retry` — Needs Retry

Output schema completeness: `best_effort_declared`

## 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"
    },
    "order_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "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"
    },
    "document_ids": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_state": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "retry_attempt": {
      "type": "number",
      "default": 1,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "doc_created_at": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "physician_docs": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "workflow_number": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "fax_submitted_at": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "local_patient_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "fax_verification_attempt": {
      "type": "number",
      "default": 1,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "fax_verification_pending": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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