---
title: "Item - Update"
method: PUT
path: "/item/update"
tags: ["item"]
---

# Item - Update

`PUT /item/update`

Update an existing item's properties such as name, weight, dimensions, or cost.

## Request body

- object
  - `item_id` string, required — Item ID to update
  - `name` string — Item name
  - `sku` string — SKU
  - `upc` string — UPC barcode
  - `weight` number — Weight
  - `weight_unit` 'oz' | 'lb' | 'g' | 'kg' — Weight unit
  - `length` number — Length
  - `width` number — Width
  - `height` number — Height
  - `dimensions_unit` 'in' | 'cm' — Dimensions unit
  - `fulfillment_sku` string — Fulfillment SKU
  - `notes` string — Notes
  - `unit` string — Unit of measure
  - `cost` number — Cost
  - `wholesale` number — Wholesale price
  - `retail` number — Retail price
  - `image` string — Image URL
  - `active` boolean — Active status
  - `description` string — Item description
  - `sale` number — Sale price

## Response `200`

Item updated

- object
  - `success` boolean, required — Whether the operation succeeded
  - `_id` string, required — Item ID
  - `sku` string — Item SKU
  - `notice` string — Additional notice (e.g. kit cost update issue)

## 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/revisions/4b5ec0ed78a6/schema)
