A bin face is one of four optional attributes (zone, aisle, row, and bin face) you can assign to a bin to make it easier to find within the warehouse.
Returns up to 100 object references from the collection with a key, ID, and link for each bin face. 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": "12",
- "id": "BF11",
- "href": "/objects/inventory-control/bin-face/12"
}, - {
- "key": "14",
- "id": "BF22",
- "href": "/objects/inventory-control/bin-face/14"
}
], - "ia::meta": {
- "totalCount": 2,
- "start": 1,
- "pageSize": 100
}
}
Creates a new bin face.
id required | string Unique identifier or name for the bin face. The bin face ID cannot be modified. Example: "BF232" |
description | string Description for the bin face. Example: "Bin Face 232" |
Created
Bad Request
{- "id": "BF2",
- "description": "Bin Face 2"
}
{- "ia::result": {
- "key": "22",
- "id": "BF2",
- "href": "/objects/inventory-control/bin-face/22"
}, - "ia::meta": {
- "totalCount": 1
}
}
Returns detailed information for a specified bin face.
key required | string System-assigned key for the bin-face. Example: 99 |
OK
Bad Request
{- "ia::result": {
- "key": "1232",
- "id": "BF123",
- "description": "Bin Face 123",
- "audit": {
- "createdDateTime": "2021-05-07T01:15:23Z",
- "modifiedDateTime": "2021-05-07T01:15:23Z",
- "createdBy": "13",
- "modifiedBy": "13"
}, - "href": "/objects/inventory-control/bin-face/1232"
}, - "ia::meta": {
- "totalCount": 1
}
}
Updates an existing bin face by setting field values. Any fields not provided remain unchanged.
key required | string System-assigned key for the bin-face. Example: 99 |
description | string Description for the bin face. Example: "Bin Face 232" |
OK
Bad Request
{- "description": "W1 G1 Bestsellers"
}
{- "ia::result": {
- "key": "1232",
- "id": "BF123",
- "href": "/objects/inventory-control/bin-face/1232"
}, - "ia::meta": {
- "totalCount": 1
}
}
Deletes a bin face.
key required | string System-assigned key for the bin-face. 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
}
}