Skip to documentation
Intake integration

Deliver Daily Navigator Intake Summary

Perform Deliver Daily Navigator Intake Summary through Intake.

View as Markdown
deliver_navigator_intake_reconciliation_report
write

Inputs

  • source_workflow_id
    textrequired
    Source Workflow Id

    Required text value.

  • recipients
    text
    Recipients

    Optional text value.

  • cutoff_time
    text
    Cutoff Time

    Optional text value.

    Default: "18:00"

  • timezone_name
    text
    Timezone Name

    Optional text value.

    Default: "America/New_York"

  • window_hours
    number
    Window Hours

    Optional numeric value.

    Default: 24

  • umpa_base_url
    text
    Umpa Base Url

    Optional text value.

    Default: "https://umpa.genhealth.ai"

  • scheduled_run_at
    expression
    Scheduled Run At

    Optional literal value or workflow expression.

  • fallback_run_at
    expression
    Fallback Run At

    Optional literal value or workflow expression.

Outputs

  • successSuccess
  • deliveryDelivery
  • delivery_reasonDelivery Reason
  • recipient_countRecipient Count
  • countsCounts
  • window_startWindow Start
  • window_endWindow End
  • errorError

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
{
  "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
{
  "type": "object",
  "properties": {
    "error": {},
    "counts": {},
    "success": {},
    "delivery": {},
    "window_end": {},
    "window_start": {},
    "delivery_reason": {},
    "recipient_count": {}
  },
  "additionalProperties": true
}
View all Intake actions