---
title: "Inventory - Increase On Hand"
method: PUT
path: "/inventory/increase_on_hand"
tags: ["inventory"]
---

# Inventory - Increase On Hand

`PUT /inventory/increase_on_hand`

Increase the on-hand inventory quantity for an item at a specific warehouse.

## Request body

- object
  - `location_id` string, required — Location ID
  - `item_id` string, required — Item ID
  - `amount` number, required — Amount to increase by
  - `notes` string — Notes for the change
  - `no_invalidate` boolean — Skip cache invalidation
  - `lock_key` string — Lock key for concurrent operations
  - `alert` number — Set alert threshold

## Response `200`

On-hand increased

- object
  - `success` boolean, required — Whether the operation succeeded

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden. Insufficient permissions.
- `429` — Too many requests. Rate limit exceeded.
- `500` — Internal server error.

---

[API](https://skmtc.net/skulabs/apis/skulabs-api.md) · [All operations](https://skmtc.net/skulabs/apis/skulabs-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/skulabs/skulabs-api/versions/4b5ec0ed78a6/schema)
