# Resolve Order Notification References

> Perform Resolve Order Notification References through Tomorrow Health.

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

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

- Handler: `tomorrow_health_resolve_order_notification_references`

- Connection type: `tomorrow_health`

## Inputs

- `notifications` — Notifications (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `notifications` — Notifications
- `resolved_notifications` — Resolved Notifications
- `count` — Count
- `resolved_count` — Resolved Count
- `unresolved_count` — Unresolved 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": [
    "notifications"
  ],
  "properties": {
    "notifications": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "success": {},
    "notifications": {},
    "resolved_count": {},
    "unresolved_count": {},
    "resolved_notifications": {}
  },
  "additionalProperties": true
}
```
