Skip to main content
POST
/
inventory
/
bulk_reconciliation
Inventory - Bulk Reconciliation
curl --request POST \
  --url https://api.skulabs.com/inventory/bulk_reconciliation \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "increase",
  "rows": [
    {
      "location_id": "<string>",
      "item_id": "<string>",
      "quantity": 123,
      "reason": "<string>",
      "notes": "<string>"
    }
  ],
  "reason": "<string>",
  "notes": "<string>"
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
type
enum<string>
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.

Available options:
increase,
decrease,
set,
update
rows
object[]
required

Array of reconciliation row objects

reason
string

Reason for reconciliation (used for increase, decrease, set types)

notes
string

Additional notes (used for increase, decrease, set types)

Response

Reconciliation completed

success
boolean
required

Whether the operation succeeded