# Quick-Ship From Inventory

> Perform Quick-Ship From Inventory through NikoHealth.

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

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

- Handler: `nikohealth_quick_ship_from_inventory`

- Connection type: `nikohealth`

## Inputs

- `order_id` — Order Id (expression, required)
  Required literal value or workflow expression.
- `patient_id` — Patient Id (expression, required)
  Required literal value or workflow expression.
- `source_location_id` — Source Location Id (expression, required)
  Required literal value or workflow expression.
- `shipped_date` — Shipped Date (expression, required)
  Required literal value or workflow expression.
- `equipment_statuses` — Equipment Statuses (expression)
  Optional literal value or workflow expression.
  Default: `["Active","Reserved"]`
- `location_type_ids` — Location Type Ids (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `order_id` — Order Id
- `patient_id` — Patient Id
- `shipped_item_ids` — Shipped Item Ids
- `skipped_already_shipped_item_ids` — Skipped Already Shipped Item Ids
- `failure_category` — Failure Category
- `retryable` — Retryable
- `error` — Error

Output schema completeness: `best_effort_declared`

## Safety

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

## Schemas

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

### Input schema

```json
{
  "type": "object",
  "required": [
    "order_id",
    "patient_id",
    "source_location_id",
    "shipped_date"
  ],
  "properties": {
    "order_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "shipped_date": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "location_type_ids": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "equipment_statuses": {
      "default": [
        "Active",
        "Reserved"
      ],
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "source_location_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "order_id": {},
    "retryable": {},
    "patient_id": {},
    "failure_category": {},
    "shipped_item_ids": {},
    "skipped_already_shipped_item_ids": {}
  },
  "additionalProperties": true
}
```
