# Read Send-Fax Defaults

> Perform Read Send-Fax Defaults through MyForms.

Source: [https://genhealth.ai/docs/workflows/integrations/my-forms/myforms_read_send_fax_defaults](https://genhealth.ai/docs/workflows/integrations/my-forms/myforms_read_send_fax_defaults)

Integration: [MyForms](https://genhealth.ai/docs/workflows/integrations/my-forms.md)

- Handler: `myforms_read_send_fax_defaults`

## Inputs

- `workflow_id` — Workflow Id (text, required)
  Required text value.
- `document_ids` — Document Ids (json, required)
  Required JSON value.
- `timeout_seconds` — Timeout Seconds (number)
  Optional numeric value.
  Default: `180`

## Outputs

- `success` — Success
- `defaults` — Defaults
- `cover_sheet_titles` — Cover Sheet Titles
- `error_message` — Error Message

Output schema completeness: `best_effort_declared`

## Safety

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

## Schemas

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

### Input schema

```json
{
  "type": "object",
  "required": [
    "workflow_id",
    "document_ids"
  ],
  "properties": {
    "workflow_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "document_ids": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "timeout_seconds": {
      "type": "number",
      "default": 180,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "success": {},
    "defaults": {},
    "error_message": {},
    "cover_sheet_titles": {}
  },
  "additionalProperties": true
}
```
