# Report Intake Outcome

> Perform Report Intake Outcome through Tomorrow Health.

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

Integration: [Tomorrow Health](https://genhealth.ai/docs/workflows/integrations/tomorrow-health.md)

- Handler: `tomorrow_health_report_intake_outcome`

## Inputs

- `bindings` — Bindings (json, required)
  Required JSON value.
- `channel` — Channel (text, required)
  Required text value.
- `dry_run` — Dry Run (boolean)
  Optional true-or-false value.
  Default: `false`

## Outputs

- `success` — Success
- `delivery_status` — Delivery Status
- `receipt_status` — Receipt Status
- `notification_error` — Notification Error
- `parent_ts` — Parent Ts
- `reply_ts` — Reply Ts
- `text` — Text
- `reply_text` — Reply Text
- `outcome` — Outcome

Output schema completeness: `best_effort_declared`

## Safety

- External effect: `write`
- Confirmation recommended: no
- Retry safe: no
- Dry run supported: yes

## Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

### Input schema

```json
{
  "type": "object",
  "required": [
    "bindings",
    "channel"
  ],
  "properties": {
    "channel": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "dry_run": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "bindings": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "text": {},
    "outcome": {},
    "success": {},
    "reply_ts": {},
    "parent_ts": {},
    "reply_text": {},
    "receipt_status": {},
    "delivery_status": {},
    "notification_error": {}
  },
  "additionalProperties": true
}
```
