# Create Internal Comment

> Perform Create Internal Comment through Parachute Health.

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

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

- Handler: `parachute_create_internal_comment`

- Connection type: `parachute`

## Inputs

- `order_id` — Order Id (expression, required)
  Required literal value or workflow expression.
- `supplier_id` — Supplier Id (expression)
  Optional literal value or workflow expression.
- `content` — Content (textarea)
  Optional text value.
  Default: `"processed"`

## Outputs

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

### Output schema

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