# Match Missing Info Requests

> Perform Match Missing Info Requests through Tomorrow Health.

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

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

- Handler: `tomorrow_health_match_missing_info_requests`

- Connection type: `tomorrow_health`

## Inputs

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

## Outputs

- `success` — Success
- `matches` — Matches
- `match` — Match
- `ordering_provider_requested` — Ordering Provider Requested
- `facility_requested` — Facility Requested
- `count` — Count
- `notification_count` — Notification Count
- `error` — Error
- `error_message` — Error Message

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": {},
    "match": {},
    "matches": {},
    "success": {},
    "error_message": {},
    "facility_requested": {},
    "notification_count": {},
    "ordering_provider_requested": {}
  },
  "additionalProperties": true
}
```
