# Collect Monthly Workflow Report

> Perform Collect Monthly Workflow Report through MyForms.

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

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

- Handler: `myforms_monthly_workflow_report`

## Inputs

- `report_anchor_date` — Report Anchor Date (expression)
  Optional literal value or workflow expression.
- `report_month` — Report Month (text)
  Optional text value.
- `timezone_name` — Timezone Name (text, required)
  Required text value.
  Default: `"America/Los_Angeles"`
- `account_key` — Account Key (text, required)
  Required text value.
  Default: `"soundview_mr"`
- `workflow_template` — Workflow Template (text, required)
  Required text value.
  Default: `"Insurance Intake"`
- `workflow_template_id` — Workflow Template Id (number, required)
  Required numeric value.
  Default: `90290`
- `include_deidentified_rows` — Include Deidentified Rows (boolean, required)
  Required true-or-false value.
  Default: `true`
- `max_csv_bytes` — Max Csv Bytes (number, required)
  Required numeric value.
  Default: `26214400`
- `max_rows` — Max Rows (number, required)
  Required numeric value.
  Default: `10000`

## Outputs

- `success` — Success
- `report_period` — Report Period
- `total` — Total
- `status_counts` — Status Counts
- `completed_count` — Completed Count
- `average_turnaround_days` — Average Turnaround Days
- `median_turnaround_days` — Median Turnaround Days
- `rows` — Rows
- `error` — Error

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": [
    "timezone_name",
    "account_key",
    "workflow_template",
    "workflow_template_id",
    "include_deidentified_rows",
    "max_csv_bytes",
    "max_rows"
  ],
  "properties": {
    "max_rows": {
      "type": "number",
      "default": 10000,
      "description": "Required numeric value.",
      "x-workflow-field-type": "number"
    },
    "account_key": {
      "type": "string",
      "default": "soundview_mr",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "report_month": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "max_csv_bytes": {
      "type": "number",
      "default": 26214400,
      "description": "Required numeric value.",
      "x-workflow-field-type": "number"
    },
    "timezone_name": {
      "type": "string",
      "default": "America/Los_Angeles",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "workflow_template": {
      "type": "string",
      "default": "Insurance Intake",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "report_anchor_date": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "workflow_template_id": {
      "type": "number",
      "default": 90290,
      "description": "Required numeric value.",
      "x-workflow-field-type": "number"
    },
    "include_deidentified_rows": {
      "type": "boolean",
      "default": true,
      "description": "Required true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "rows": {},
    "error": {},
    "total": {},
    "success": {},
    "report_period": {},
    "status_counts": {},
    "completed_count": {},
    "median_turnaround_days": {},
    "average_turnaround_days": {}
  },
  "additionalProperties": true
}
```
