Overview
This endpoint updates an existing Inventory Location (CI Location) using its VUUID.
Only the fields provided in the request payload are updated; all other attributes remain unchanged.
Notes
Authentication and authorization are required.
Partial updates are supported.
Only specific fields are allowed to be updated.
Providing unsupported or read-only attributes will result in a 400 Bad Request error.
UI Navigation
Asset Management→ Inventory → Setup → Local Tables → Inventory Locations
Finders
Not applicable.
This is a PATCH (update) endpoint and does not support finders.
Path Parameters
| Parameter | Description | Example |
|---|---|---|
| Vuuid | Unique identifier of the inventory location | B710F10A435CF940E053508010ACC979 |
Query Standards
Not applicable.
This endpoint does not support finder, limit, offset, or orderBy.
Finders with Example
Not applicable.
Finders are not supported for PATCH operations.
Attributes
The following attributes may be returned in the response.
Only attributes marked as Updatable = Yes can be updated via this endpoint.
| CMiC UI Fieldname | Object | Name | Description | Type | Data Length | Mandatory | Updatable |
|---|---|---|---|---|---|---|---|
| CilocCompCode | cilocation | cilocCompCode | Company code associated with the inventory location | String | 8 | True | No |
| CilocCode | cilocation | cilocCode | Unique inventory location code | String | 7 | True | No |
| CilocName | cilocation | cilocName | Description or name of the inventory location | String | 60 | False | Yes |
| CilocDeptCode | cilocation | cilocDeptCode | Department code linked to the inventory location | String | 6 | True | Yes |
| CilocTypeCode | cilocation | cilocTypeCode | Inventory location type (Warehouse, Bin, etc.) | String | 1 | False | Yes |
| CilocCtrlCode | cilocation | cilocCtrlCode | Control code used for bin or location management | String | 7 | False | No |
| CilocBinCtrlFlag | cilocation | cilocBinCtrlFlag | Indicates whether bin control is enabled (Y/N) | String | 1 | False | No |
| CilocPctUsed | cilocation | cilocPctUsed | Percentage of storage capacity used | Number | 6,2 | False | No |
| CilocDeptDistFlag | cilocation | cilocDeptDistFlag | Indicates if department distribution is enabled (Y/N) | String | 1 | True | No |
| CilocHier | cilocation | cilocHier | Hierarchical structure of the inventory location | String | 255 | False | No |
| CilocInvSerCode | cilocation | cilocInvSerCode | Inventory serialization code | String | 4 | False | No |
| CilocMszoneCode | cilocation | cilocMszoneCode | Material staging zone code | String | 10 | False | No |
| CilocIuCreateDate | cilocation | cilocIuCreateDate | Date and time when the record was created | Datetime | N/A | False | No |
| CilocIuCreateUser | cilocation | cilocIuCreateUser | User who created the inventory location | String | 30 | False | No |
| CilocIuUpdateDate | cilocation | cilocIuUpdateDate | Date and time of the last update | Datetime | N/A | False | No |
| CilocIuUpdateUser | cilocation | cilocIuUpdateUser | User who last updated the inventory location | String | 30 | False | No |
| CilocVUuid | cilocation | cilocVUuid | Virtual unique identifier for the inventory location | String | 64 | False | No |
Basic authentication
OK
"{\n \"cilocCompCode\": \"RVHQ1001\",\n \"cilocCode\": \"WHSE1\",\n \"cilocName\": \"Hey dummy Name\",\n \"cilocDeptCode\": \"00\",\n \"cilocTypeCode\": \"B\",\n \"cilocCtrlCode\": null,\n \"cilocBinCtrlFlag\": \"N\",\n \"cilocPctUsed\": null,\n \"cilocDeptDistFlag\": \"N\",\n \"cilocHier\": \"RVHQ1001 .WHSE1 .\",\n \"cilocInvSerCode\": null,\n \"cilocMszoneCode\": null,\n \"cilocIuCreateDate\": \"2011-01-04T13:45:34-05:00\",\n \"cilocIuUpdateDate\": \"2026-01-06T06:47:08-05:00\",\n \"cilocVUuid\": \"B710F10A435CF940E053508010ACC979\"\n}"