# Deliver Daily Consignment Summary

> Perform Deliver Daily Consignment Summary through Consignment Intake.

Source: [https://genhealth.ai/docs/workflows/integrations/consignment-intake/deliver_consignment_reconciliation_report](https://genhealth.ai/docs/workflows/integrations/consignment-intake/deliver_consignment_reconciliation_report)

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

- Handler: `deliver_consignment_reconciliation_report`

## Inputs

- `source_workflow_id` — Source Workflow Id (workflow_select, required)
  Required selected identifier or 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/Detroit"`
- `window_hours` — Window Hours (number)
  Optional numeric value.
  Default: `24`
- `claimsoft_base_url` — Claimsoft Base Url (text)
  Optional text value.
- `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.
- `trigger_payload` — Trigger Payload (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `status` — Status
- `delivery` — Delivery
- `delivery_reason` — Delivery Reason
- `delivery_status` — Delivery Status
- `recipient_count` — Recipient Count
- `report_reference` — Report Reference
- `window_start` — Window Start
- `window_end` — Window End
- `timezone` — Timezone
- `window_complete` — Window Complete
- `received` — Received
- `verified_created` — Verified Created
- `held` — Held
- `not_processed` — Not Processed
- `pending` — Pending
- `failure_count` — Failure Count
- `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/Detroit",
      "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"
    },
    "trigger_payload": {
      "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"
    },
    "claimsoft_base_url": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "source_workflow_id": {
      "type": "string",
      "description": "Required selected identifier or value.",
      "x-workflow-field-type": "workflow_select"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "held": {},
    "error": {},
    "status": {},
    "pending": {},
    "success": {},
    "delivery": {},
    "received": {},
    "timezone": {},
    "window_end": {},
    "window_start": {},
    "failure_count": {},
    "not_processed": {},
    "delivery_reason": {},
    "delivery_status": {},
    "recipient_count": {},
    "window_complete": {},
    "report_reference": {},
    "verified_created": {}
  },
  "additionalProperties": true
}
```
