# Resolve Order Products

> Perform Resolve Order Products through NikoHealth.

Source: [https://genhealth.ai/docs/workflows/integrations/nikohealth/nikohealth_resolve_order_products](https://genhealth.ai/docs/workflows/integrations/nikohealth/nikohealth_resolve_order_products)

Integration: [NikoHealth](https://genhealth.ai/docs/workflows/integrations/nikohealth.md)

- Handler: `nikohealth_resolve_order_products`

## Inputs

- `items` — Items (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `items` — Items
- `unresolved_hcpcs` — Unresolved Hcpcs
- `unresolved_warning` — Unresolved Warning
- `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": [
    "items"
  ],
  "properties": {
    "items": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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