# Resolve Order Items

> Perform Resolve Order Items through ClaimSoft.

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

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

- Handler: `claimsoft_resolve_order_items`

- Connection type: `claimsoft`

## Inputs

- `order_id` — Order Id (expression, required)
  Required literal value or workflow expression.
- `item_codes` — Item Codes (json)
  Optional JSON value.
- `item_quantities` — Item Quantities (json)
  Optional JSON value.
- `item_identities` — Item Identities (json)
  Optional JSON value.
- `warehouse_id` — Warehouse Id (expression, required)
  Required literal value or workflow expression.
- `warehouse_name` — Warehouse Name (text, required)
  Required text value.
- `dos_from` — Dos From (text, required)
  Required text value.
- `dos_to` — Dos To (text, required)
  Required text value.
- `diagnosis_codes` — Diagnosis Codes (json)
  Optional JSON value.
- `skip_out_of_stock_items` — Skip Out Of Stock Items (boolean)
  Optional true-or-false value.
  Default: `false`

## 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",
    "warehouse_id",
    "warehouse_name",
    "dos_from",
    "dos_to"
  ],
  "properties": {
    "dos_to": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "dos_from": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "item_codes": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "warehouse_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "warehouse_name": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "diagnosis_codes": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "item_identities": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "item_quantities": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "skip_out_of_stock_items": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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