# Resolve Order Alert

> Perform Resolve Order Alert through ClaimSoft.

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

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

- Handler: `claimsoft_resolve_order_alert`

- Connection type: `claimsoft`

## Inputs

- `order_id` — Order Id (expression, required)
  Required literal value or workflow expression.
- `comment_marker` — Comment Marker (text, required)
  Required text value.
- `alert_type_id` — Alert Type Id (text, required)
  Required text value.
- `created_by_user` — Created By User (text, required)
  Required text value.

## Outputs

- `success` — Success
- `error` — Error

Output schema completeness: `best_effort_declared`

## Safety

- External effect: `read`
- Confirmation recommended: no
- Retry safe: yes
- Dry run supported: no

## Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

### Input schema

```json
{
  "type": "object",
  "required": [
    "order_id",
    "comment_marker",
    "alert_type_id",
    "created_by_user"
  ],
  "properties": {
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "alert_type_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "comment_marker": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "created_by_user": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {}
  },
  "additionalProperties": true
}
```
