# Resolve Order Item Identities

> Perform Resolve Order Item Identities through ClaimSoft.

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

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

- Handler: `claimsoft_resolve_order_item_identities`

- Connection type: `claimsoft`

## Inputs

- `item_codes` — Item Codes (json, required)
  Required JSON value.
- `item_quantities` — Item Quantities (json, required)
  Required JSON value.
- `dos_from` — Dos From (text, required)
  Required text value.
- `dos_to` — Dos To (text, required)
  Required text value.
- `include_catalog_modifiers` — Include Catalog Modifiers (boolean)
  Optional true-or-false value.
  Default: `false`
- `item_alternate_codes` — Item Alternate Codes (json)
  Optional JSON value.
- `item_sizes` — Item Sizes (json)
  Optional JSON value.
- `apply_item_sizes` — Apply Item Sizes (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": [
    "item_codes",
    "item_quantities",
    "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"
    },
    "item_codes": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "item_sizes": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "item_quantities": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "apply_item_sizes": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "item_alternate_codes": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "include_catalog_modifiers": {
      "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
}
```
