# Ensure Order Correlation Comment

> Perform Ensure Order Correlation Comment through ClaimSoft.

Source: [https://genhealth.ai/docs/workflows/integrations/claim-soft/claimsoft_ensure_order_correlation_comment](https://genhealth.ai/docs/workflows/integrations/claim-soft/claimsoft_ensure_order_correlation_comment)

Integration: [ClaimSoft](https://genhealth.ai/docs/workflows/integrations/claim-soft.md)

- Handler: `claimsoft_ensure_order_correlation_comment`

- Connection type: `claimsoft`

## Inputs

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

## Outputs

- `success` — Success
- `order_id` — Order Id
- `comment_id` — Comment Id
- `created` — Created
- `error` — Error
- `error_kind` — Error Kind

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",
    "correlation_token"
  ],
  "properties": {
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "correlation_token": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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