# Get Order Documents

> Perform Get Order Documents through Tomorrow Health.

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

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

- Handler: `tomorrow_health_get_order_documents`

- Connection type: `tomorrow_health`

## Inputs

- `order_id` — Order Id (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `documents` — Documents
- `count` — Count
- `order_id` — Order Id
- `primary_document_id` — Primary Document Id
- `tomorrow_health_org_id` — Tomorrow Health Org Id
- `tomorrow_health_org_name` — Tomorrow Health Org Name
- `tomorrow_health_supplier_id` — Tomorrow Health Supplier Id
- `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": [
    "order_id"
  ],
  "properties": {
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "success": {},
    "order_id": {},
    "documents": {},
    "primary_document_id": {},
    "tomorrow_health_org_id": {},
    "tomorrow_health_org_name": {},
    "tomorrow_health_supplier_id": {}
  },
  "additionalProperties": true
}
```
