# Update SKU dimensions Updates dimensions for a SKU. Only provided fields are updated. Endpoint: PATCH /v1/skus/{skuUuid}/dimension Version: 1.0.0 Security: Bearer ## Path parameters: - `skuUuid` (string, required) Unique identifier of the SKU. ## Request fields (application/json): - `length` (number,null) Updated length measurement. Maximum: 99999999999999.9999. - `width` (number,null) Updated width measurement. Maximum: 99999999999999.9999. - `height` (number,null) Updated height measurement. Maximum: 99999999999999.9999. ## Response 200 fields (application/json): - `skuUuid` (string, required) Identifier of the SKU these dimensions belong to. - `unit` (string, required) Base unit of measurement for the dimension values. Enum: "millimeter", "centimeter", "meter", "inch", "foot" - `length` (number, required) Length measurement in the base unit. - `width` (number, required) Width measurement in the base unit. - `height` (number, required) Height measurement in the base unit. - `conversions` (object, required) System-calculated conversions to other configured dimension units. Keys are unit identifiers, values contain converted measurements. ## Response 401 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) ## Response 403 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null) ## Response 404 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null) ## Response 422 fields (application/problem+json): - `errors` (array) - `errors.code` (string, required) - `errors.message` (string, required) - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null) ## Response 500 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null)