# Deliver Daily Navigator Intake Summary

> Perform Deliver Daily Navigator Intake Summary through Intake.

Source: [https://genhealth.ai/docs/workflows/integrations/intake/deliver_navigator_intake_reconciliation_report](https://genhealth.ai/docs/workflows/integrations/intake/deliver_navigator_intake_reconciliation_report)

Integration: [Intake](https://genhealth.ai/docs/workflows/integrations/intake.md)

- Handler: `deliver_navigator_intake_reconciliation_report`

## Inputs

- `source_workflow_id` — Source Workflow Id (text, required)
  Required text value.
- `recipients` — Recipients (text)
  Optional text value.
- `cutoff_time` — Cutoff Time (text)
  Optional text value.
  Default: `"18:00"`
- `timezone_name` — Timezone Name (text)
  Optional text value.
  Default: `"America/New_York"`
- `window_hours` — Window Hours (number)
  Optional numeric value.
  Default: `24`
- `umpa_base_url` — Umpa Base Url (text)
  Optional text value.
  Default: `"https://umpa.genhealth.ai"`
- `scheduled_run_at` — Scheduled Run At (expression)
  Optional literal value or workflow expression.
- `fallback_run_at` — Fallback Run At (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `delivery` — Delivery
- `delivery_reason` — Delivery Reason
- `recipient_count` — Recipient Count
- `counts` — Counts
- `window_start` — Window Start
- `window_end` — Window End
- `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": [
    "source_workflow_id"
  ],
  "properties": {
    "recipients": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "cutoff_time": {
      "type": "string",
      "default": "18:00",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "window_hours": {
      "type": "number",
      "default": 24,
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "timezone_name": {
      "type": "string",
      "default": "America/New_York",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "umpa_base_url": {
      "type": "string",
      "default": "https://umpa.genhealth.ai",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "fallback_run_at": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "scheduled_run_at": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "source_workflow_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "counts": {},
    "success": {},
    "delivery": {},
    "window_end": {},
    "window_start": {},
    "delivery_reason": {},
    "recipient_count": {}
  },
  "additionalProperties": true
}
```
