# Download Fax (RingCentral)

> Perform Download Fax (RingCentral) through RingCentral.

Source: [https://genhealth.ai/docs/workflows/integrations/ring-central/download_ringcentral_fax](https://genhealth.ai/docs/workflows/integrations/ring-central/download_ringcentral_fax)

Integration: [RingCentral](https://genhealth.ai/docs/workflows/integrations/ring-central.md)

- Handler: `download_ringcentral_fax`

- Connection type: `ringcentral`

## Inputs

- `message_id` — Message Id (expression)
  Optional literal value or workflow expression.
- `attachment_id` — Attachment Id (expression)
  Optional literal value or workflow expression.
- `dry_run` — Dry Run (boolean)
  Optional true-or-false value.
  Default: `false`

## Outputs

- `success` — Success
- `doc_id` — Doc Id
- `message_id` — Message Id
- `skipped` — Skipped
- `reason` — Reason
- `dry_run` — Dry Run
- `sha256` — Sha256
- `size` — Size
- `error` — Error

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"
    },
    "message_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "attachment_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "size": {},
    "error": {},
    "doc_id": {},
    "reason": {},
    "sha256": {},
    "dry_run": {},
    "skipped": {},
    "success": {},
    "message_id": {}
  },
  "additionalProperties": true
}
```
