# Post Missing Info Documentation Request

> Perform Post Missing Info Documentation Request through Tomorrow Health.

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

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

- Handler: `tomorrow_health_post_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.
- `friendly_id` — Friendly Id (expression)
  Optional literal value or workflow expression.
- `patient_key` — Patient Key (expression)
  Optional literal value or workflow expression.
- `repost` — Repost (boolean)
  Optional true-or-false value.
  Default: `false`

## Outputs

- `success` — Success
- `skipped` — Skipped
- `skip_reason` — Skip Reason
- `order_id` — Order Id
- `document_id` — Document Id
- `comment_id` — Comment Id
- `request_count` — Request Count
- `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": {
    "repost": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "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"
    },
    "friendly_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_key": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "missing_fields": {
      "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": {},
    "comment_id": {},
    "document_id": {},
    "skip_reason": {},
    "error_message": {},
    "request_count": {},
    "slack_message": {},
    "escalation_fields": {},
    "slack_should_notify": {}
  },
  "additionalProperties": true
}
```
