---
title: "Inventory - Bulk Reconciliation"
method: POST
path: "/inventory/bulk_reconciliation"
tags: ["inventory"]
---

# Inventory - Bulk Reconciliation

`POST /inventory/bulk_reconciliation`

Reconcile inventory quantities in bulk, adjusting on-hand counts to match physical counts.

## Request body

- object
  - `type` 'increase' | 'decrease' | 'set' | 'update', required — Reconciliation type. "increase" adds to on-hand, "decrease" subtracts, "set" sets an exact value, "update" sets an exact value with per-row reason/notes.
  - `reason` string — Reason for reconciliation (used for increase, decrease, set types)
  - `notes` string — Additional notes (used for increase, decrease, set types)
  - `rows` object[], required — Array of reconciliation row objects
    - `location_id` string, required — Location ID
    - `item_id` string, required — Item ID
    - `quantity` number, required — Quantity to reconcile
    - `reason` string — Per-row reason (used only when type is "update")
    - `notes` string — Per-row notes (used only when type is "update")

## Response `200`

Reconciliation completed

- 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)
