# Post Tomorrow Health Comment

> Perform Post Tomorrow Health Comment through Tomorrow Health Intake.

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

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

- Handler: `gaboro_tomorrow_health_post_comment`

- Connection type: `tomorrow_health`

## Inputs

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

## Outputs

- `success` — Success
- `order_id` — Order Id
- `comment_id` — Comment Id
- `message` — 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",
    "message"
  ],
  "properties": {
    "message": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "textarea"
    },
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "message": {},
    "success": {},
    "order_id": {},
    "comment_id": {},
    "error_message": {}
  },
  "additionalProperties": true
}
```
