# Send Parachute → Niko Daily Activity Report

> Perform Send Parachute → Niko Daily Activity Report through GenHealth.

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

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

- Handler: `send_parachute_niko_daily_report`

## Inputs

- `intake_workflow_name` — Intake Workflow Name (text)
  Optional text value.
- `eligibility_workflow_name` — Eligibility Workflow Name (text)
  Optional text value.
- `report_day` — Report Day (text)
  Optional text value.
  Default: `"yesterday"`
- `window_hours` — Window Hours (number)
  Optional numeric value.
- `timezone` — Timezone (text)
  Optional text value.
  Default: `"America/New_York"`
- `to_emails` — To Emails (text, required)
  Required text value.
- `cc_emails` — Cc Emails (text)
  Optional text value.
- `subject` — Subject (text)
  Optional text value.
  Default: `"{report_title} — {report_day}"`
- `report_title` — Report Title (text)
  Optional text value.
  Default: `"Parachute → Niko daily activity"`
- `client_name` — Client Name (text)
  Optional text value.
- `niko_base_url` — Niko Base Url (text)
  Optional text value.
- `send_when_empty` — Send When Empty (boolean)
  Optional true-or-false value.
  Default: `"false"`
- `intake_loop_node_id` — Intake Loop Node Id (text)
  Optional text value.
  Default: `"loop_orders"`
- `eligibility_loop_node_id` — Eligibility Loop Node Id (text)
  Optional text value.
  Default: `"process_orders_loop"`
- `from_email` — From Email (text)
  Optional text value.
- `gmail_group_email` — Gmail Group Email (text)
  Optional text value.
- `force_resend` — Force Resend (boolean)
  Optional true-or-false value.
  Default: `"false"`
- `output_path` — Output Path (text)
  Optional text value.

## Outputs

- `success` — Success
- `report_day` — Report Day
- `window_label` — Window Label
- `subject` — Subject
- `recipients` — Recipients
- `email_sent` — Email Sent
- `message_id` — Message Id
- `skip_reason` — Skip Reason
- `output_path` — Output Path
- `intake_run_count` — Intake Run Count
- `eligibility_run_count` — Eligibility Run Count
- `intake_counts` — Intake Counts
- `eligibility_counts` — Eligibility Counts
- `html` — Html
- `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": [
    "to_emails"
  ],
  "properties": {
    "subject": {
      "type": "string",
      "default": "{report_title} — {report_day}",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "timezone": {
      "type": "string",
      "default": "America/New_York",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "cc_emails": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "to_emails": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "from_email": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "report_day": {
      "type": "string",
      "default": "yesterday",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "client_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "output_path": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "force_resend": {
      "type": "boolean",
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "report_title": {
      "type": "string",
      "default": "Parachute → Niko daily activity",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "window_hours": {
      "type": "number",
      "description": "Optional numeric value.",
      "x-workflow-field-type": "number"
    },
    "niko_base_url": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "send_when_empty": {
      "type": "boolean",
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "gmail_group_email": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "intake_loop_node_id": {
      "type": "string",
      "default": "loop_orders",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "intake_workflow_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "eligibility_loop_node_id": {
      "type": "string",
      "default": "process_orders_loop",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "eligibility_workflow_name": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "html": {},
    "error": {},
    "subject": {},
    "success": {},
    "email_sent": {},
    "message_id": {},
    "recipients": {},
    "report_day": {},
    "output_path": {},
    "skip_reason": {},
    "window_label": {},
    "intake_counts": {},
    "intake_run_count": {},
    "eligibility_counts": {},
    "eligibility_run_count": {}
  },
  "additionalProperties": true
}
```
