# Get Order Items

> Perform Get Order Items through NikoHealth.

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

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

- Handler: `nikohealth_get_order_items`

- Connection type: `nikohealth`

## Inputs

- `order_id` — Order Id (text, required)
  Required text value.
- `skip_if_empty` — Skip If Empty (boolean)
  Optional true-or-false value.
  Default: `false`

## Outputs

- `success` — Success
- `skipped` — Skipped
- `items` — Items
- `count` — Count
- `hcpcs_codes` — Hcpcs Codes
- `hcpcs_items` — Hcpcs Items
- `order_item_ids_without_hcpcs` — Order Item Ids Without Hcpcs
- `reason` — Reason
- `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"
  ],
  "properties": {
    "order_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "skip_if_empty": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "items": {},
    "reason": {},
    "skipped": {},
    "success": {},
    "hcpcs_codes": {},
    "hcpcs_items": {},
    "order_item_ids_without_hcpcs": {}
  },
  "additionalProperties": true
}
```
