# Get Inventory Item

> Perform Get Inventory Item through Bonafide.

Source: [https://genhealth.ai/docs/workflows/integrations/bonafide/bonafide_get_inventory_item](https://genhealth.ai/docs/workflows/integrations/bonafide/bonafide_get_inventory_item)

Integration: [Bonafide](https://genhealth.ai/docs/workflows/integrations/bonafide.md)

- Handler: `bonafide_get_inventory_item`

- Connection type: `bonafide`

## Inputs

- `sku` — Sku (expression, required)
  Required literal value or workflow expression.
- `office` — Office (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `item` — Item
- `message` — Message
- `error` — Error
- `error_message` — Error Message

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": [
    "sku",
    "office"
  ],
  "properties": {
    "sku": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "office": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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