# Create Packet Document

> Perform Create Packet Document through Tomorrow Health.

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

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

- Handler: `tomorrow_health_create_packet_document`

- Connection type: `tomorrow_health`

## Inputs

- `order_id` — Order Id (expression, required)
  Required literal value or workflow expression.
- `order_details` — Order Details (expression)
  Optional literal value or workflow expression.
- `raw_order_details` — Raw Order Details (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `document_id` — Document Id
- `created` — Created
- `order_details_changed` — Order Details Changed
- `order_id` — Order Id
- `supplier_id` — Supplier Id
- `source_document_count` — Source Document Count
- `page_count` — Page Count
- `document_types` — Document Types
- `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"
    },
    "order_details": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "raw_order_details": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "created": {},
    "success": {},
    "order_id": {},
    "page_count": {},
    "document_id": {},
    "supplier_id": {},
    "document_types": {},
    "order_details_changed": {},
    "source_document_count": {}
  },
  "additionalProperties": true
}
```
