# Render SWO Follow-up PDF

> Perform Render SWO Follow-up PDF through GenHealth - SWO Outreach.

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

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

- Handler: `swo_followup_render_pdf`

## Inputs

- `transcript` — Transcript (expression, required)
  Required literal value or workflow expression.
- `recording_url` — Recording Url (expression)
  Optional literal value or workflow expression.
- `order_id` — Order Id (expression)
  Optional literal value or workflow expression.
- `patient_id` — Patient Id (expression)
  Optional literal value or workflow expression.
- `correlation_id` — Correlation Id (expression)
  Optional literal value or workflow expression.
- `patient_name` — Patient Name (expression)
  Optional literal value or workflow expression.
- `patient_dob` — Patient Dob (expression)
  Optional literal value or workflow expression.
- `order_date` — Order Date (expression)
  Optional literal value or workflow expression.
- `provider_name` — Provider Name (expression)
  Optional literal value or workflow expression.
- `provider_phone` — Provider Phone (expression)
  Optional literal value or workflow expression.
- `outcome` — Outcome (json)
  Optional JSON value.

## Outputs

- `success` — Success
- `document_id` — Document Id
- `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": [
    "transcript"
  ],
  "properties": {
    "outcome": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "order_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "order_date": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "transcript": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_dob": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_name": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "provider_name": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "recording_url": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "correlation_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "provider_phone": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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