# Template Processing Summary Report

> Perform Template Processing Summary Report through GenHealth.

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

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

- Handler: `brightree_template_processing_summary_report`

## Inputs

- `period` — Period (select, required)
  Required selected identifier or value.
  Options: Daily ("daily"), Weekly ("weekly")
- `report_date` — Report Date (text)
  Optional text value.
- `as_of` — As Of (text)
  Optional text value.
- `target_workflow_definition_id` — Target Workflow Definition Id (text)
  Optional text value.
- `source_report_base_url` — Source Report Base Url (text)
  Optional text value.
- `output_path` — Output Path (text)
  Optional text value.
- `to_emails` — To Emails (text)
  Optional text value.
  Default: `"barberdme@genhealth.ai"`
- `subject` — Subject (text)
  Optional text value.

## Outputs

- `status` — Status
- `html` — Html
- `output_path` — Output Path
- `emailed_to` — Emailed To
- `attachment_count` — Attachment Count
- `period` — Period
- `window_mode` — Window Mode
- `time_range_label` — Time Range Label
- `processed_count` — Processed Count
- `needs_review_count` — Needs Review Count
- `unexpected_failure_count` — Unexpected Failure Count
- `business_flow_rows` — Business Flow Rows

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": [
    "period"
  ],
  "properties": {
    "as_of": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "period": {
      "enum": [
        "daily",
        "weekly"
      ],
      "type": "string",
      "description": "Required selected identifier or value.",
      "x-workflow-field-type": "select"
    },
    "subject": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "to_emails": {
      "type": "string",
      "default": "barberdme@genhealth.ai",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "output_path": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "report_date": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "source_report_base_url": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "target_workflow_definition_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "html": {},
    "period": {},
    "status": {},
    "emailed_to": {},
    "output_path": {},
    "window_mode": {},
    "processed_count": {},
    "attachment_count": {},
    "time_range_label": {},
    "business_flow_rows": {},
    "needs_review_count": {},
    "unexpected_failure_count": {}
  },
  "additionalProperties": true
}
```
