# Resolve Missing Info Request

> Perform Resolve Missing Info Request through Tomorrow Health.

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

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

- Handler: `tomorrow_health_resolve_missing_info_request`

- Connection type: `tomorrow_health`

## Inputs

- `order_id` — Order Id (expression, required)
  Required literal value or workflow expression.
- `document_id` — Document Id (expression, required)
  Required literal value or workflow expression.
- `missing_fields` — Missing Fields (expression)
  Optional literal value or workflow expression.
- `ordering_provider_synced` — Ordering Provider Synced (expression)
  Optional literal value or workflow expression.
- `unwritten_fields` — Unwritten Fields (expression)
  Optional literal value or workflow expression.
- `facility_synced` — Facility Synced (expression)
  Optional literal value or workflow expression.
- `facility_sync_skipped` — Facility Sync Skipped (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `skipped` — Skipped
- `resolved` — Resolved
- `should_repost` — Should Repost
- `order_id` — Order Id
- `document_id` — Document Id
- `escalation_fields` — Escalation Fields
- `message` — Message
- `slack_should_notify` — Slack Should Notify
- `slack_message` — Slack Message
- `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": [
    "order_id",
    "document_id"
  ],
  "properties": {
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "missing_fields": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "facility_synced": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "unwritten_fields": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "facility_sync_skipped": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "ordering_provider_synced": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "message": {},
    "skipped": {},
    "success": {},
    "order_id": {},
    "resolved": {},
    "document_id": {},
    "error_message": {},
    "should_repost": {},
    "slack_message": {},
    "escalation_fields": {},
    "slack_should_notify": {}
  },
  "additionalProperties": true
}
```
