A zone is one of four optional attributes (zone, aisle, row, and bin face) you can assign to a bin to make it easier to find in the warehouse.
Returns up to 100 object references from the collection with a key, ID, and link for each zone. This operation is mostly for use in testing; use the query service to find objects that meet certain criteria and to specify properties that are returned.
OK
Bad Request
{- "ia::result": [
- {
- "key": "546",
- "id": "RZ1A",
- "href": "/objects/inventory-control/zone/546"
}, - {
- "key": "547",
- "id": "RZ2A",
- "href": "/objects/inventory-control/zone/547"
}, - {
- "key": "548",
- "id": "RZ3A",
- "href": "/objects/inventory-control/zone/548"
}
], - "ia::meta": {
- "totalCount": 3,
- "start": 1,
- "pageSize": 100,
- "next": 2,
- "previous": 1
}
}
Creates a new zone.
id required | string Unique identifier or name for the zone. The zone ID cannot be modified. Example: "Z4REF" |
description | string Description for the zone. Example: "Refrigeration Zone Four" |
Created
Bad Request
{- "id": "Z2",
- "description": "Refrigeration zone 2"
}
{- "ia::result": {
- "key": "546",
- "id": "RZ2",
- "href": "/objects/inventory-control/zone/546"
}, - "ia::meta": {
- "totalCount": 1
}
}
Returns detailed information for a specified zone.
key required | string System-assigned unique key for the zone. Example: 99 |
OK
Bad Request
{- "ia::result": {
- "key": "564",
- "id": "RZ2",
- "description": "Refrigeration zone 2",
- "audit": {
- "createdDateTime": "2021-05-07T01:15:23Z",
- "modifiedDateTime": "2021-05-07T01:15:23Z",
- "createdBy": "13",
- "modifiedBy": "13"
}, - "href": "/objects/inventory-control/zone/564"
}, - "ia::meta": {
- "totalCount": 1
}
}
Updates an existing zone by setting field values. Any fields not provided remain unchanged.
key required | string System-assigned unique key for the zone. Example: 99 |
description | string Description for the zone. Example: "Refrigeration Zone Four" |
OK
Bad Request
{- "description": "Refrigeration zone 2A"
}
{- "ia::result": {
- "key": "564",
- "id": "RZ2",
- "href": "/objects/inventory-control/zone/564"
}, - "ia::meta": {
- "totalCount": 1
}
}
Deletes a zone. You can delete a zone if it is not being used and you no longer need it. Deleted zones cannot be recovered.
key required | string System-assigned unique key for the zone. Example: 99 |
No Content
Bad Request
{- "ia::result": {
- "ia::error": {
- "code": "invalidRequest",
- "message": "A POST request requires a payload",
- "errorId": "REST-1028",
- "additionalInfo": {
- "messageId": "IA.REQUEST_REQUIRES_A_PAYLOAD",
- "placeholders": {
- "OPERATION": "POST"
}, - "propertySet": { }
}, - "supportId": "Kxi78%7EZuyXBDEGVHD2UmO1phYXDQAAAAo"
}
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 0,
- "totalError": 1
}
}