An aisle 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 aisle. 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": "145",
- "id": "A12",
- "href": "/objects/inventory-control/aisle/145"
}, - {
- "key": "146",
- "id": "A14",
- "href": "/objects/inventory-control/aisle/146"
}, - {
- "key": "147",
- "id": "A16",
- "href": "/objects/inventory-control/aisle/147"
}
], - "ia::meta": {
- "totalCount": 3,
- "start": 1,
- "pageSize": 100
}
}
Creates a new aisle.
id required | string Name or other unique identifier for the aisle. The aisle ID cannot be modified. Example: "A2" |
description | string Description for the aisle. Example: "Aisle 2 Dishwashers" |
Created
Bad Request
{- "id": "A12",
- "description": "Aisle 12 Dishwashers"
}
{- "ia::result": {
- "key": "145",
- "id": "AD12",
- "href": "/objects/inventory-control/aisle/145"
}, - "ia::meta": {
- "totalCount": 1
}
}
Returns detailed information for a specified aisle.
key required | string System-assigned key for the aisle. Example: 99 |
OK
Bad Request
{- "ia::result": {
- "key": "145",
- "id": "A12",
- "description": "Aisle 12 of dishwashers",
- "audit": {
- "createdDateTime": "2021-05-07T01:15:23Z",
- "modifiedDateTime": "2021-05-07T01:15:23Z",
- "createdBy": "13",
- "modifiedBy": "13"
}, - "href": "/objects/inventory-control/aisle/145"
}, - "ia::meta": {
- "totalCount": 1
}
}
Updates an existing aisle by setting field values. Any fields not provided remain unchanged.
key required | string System-assigned key for the aisle. Example: 99 |
description | string Description for the aisle. Example: "Aisle 2 Dishwashers" |
OK
Bad Request
{- "description": "Aisle 1 dishwashers"
}
{- "ia::result": {
- "key": "145",
- "id": "A12",
- "href": "/objects/inventory-control/aisle/145"
}, - "ia::meta": {
- "totalCount": 1
}
}
Deletes an aisle. You can delete an aisle if it is not being used and you no longer need it. Deleted aisles cannot be recovered.
key required | string System-assigned key for the aisle. 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
}
}