# Accept Tomorrow Health Order

> Perform Accept Tomorrow Health Order through Tomorrow Health Intake.

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

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

- Handler: `gaboro_accept_tomorrow_health_order`

- 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
- `accepted` — Accepted
- `skipped` — Skipped
- `documentation_survey_submitted` — Documentation Survey Submitted
- `additional_documentation_required` — Additional Documentation Required
- `recovered_after_auth_rejection` — Recovered After Auth Rejection
- `order_id` — Order Id
- `estimated_delivery_at` — Estimated Delivery At
- `line_item_count` — Line Item Count
- `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"
    },
    "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": {},
    "skipped": {},
    "success": {},
    "accepted": {},
    "order_id": {},
    "line_item_count": {},
    "estimated_delivery_at": {},
    "tomorrow_health_org_id": {},
    "tomorrow_health_org_name": {},
    "tomorrow_health_supplier_id": {},
    "documentation_survey_submitted": {},
    "recovered_after_auth_rejection": {},
    "additional_documentation_required": {}
  },
  "additionalProperties": true
}
```
