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 query to find objects that meet certain criteria and to specify properties that are returned.
Subscription | Inventory Control |
---|---|
Configuration | Advanced workflows is enabled. |
User ype | Business, CRM, Employee, Warehouse |
Permissions | List, View Aisles |
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.
Subscription | Inventory Control |
---|---|
Configuration | Advanced workflows is enabled. |
User ype | Business |
Permissions | List, View, Add Aisles |
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.
Subscription | Inventory Control |
---|---|
Configuration | Advanced workflows is enabled. |
User ype | Business, CRM, Employee, Warehouse |
Permissions | List, View Aisles |
key required | string System-assigned key for the aisle. Example: 145 |
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.
Subscription | Inventory Control |
---|---|
Configuration | Advanced workflows is enabled. |
User ype | Business |
Permissions | List, View, Edit Aisles |
key required | string System-assigned key for the aisle. Example: 145 |
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.
Subscription | Inventory Control |
---|---|
Configuration | Advanced workflows is enabled. |
User ype | Business |
Permissions | List, View, Delete Aisles |
key required | string System-assigned key for the aisle. Example: 145 |
No Content
Bad Request
{- "ia::error": {
- "code": "invalidRequest",
- "message": "Malformed URL",
- "supportId": "sQrM9%7EYdh5oDEWVb80mrn9xuHjoAAAABBQ",
- "details": [
- {
- "code": "invalidRequest",
- "message": "The content type is not valid",
- "correction": "TODO"
}
]
}
}
Queries an object for filtered data.
object | string Object type to query, in the form Example: "inventory-control/aisle" | ||||||||
fields | Array of strings List of fields to include in the response. Can be any combination of these:
Example: ["key","id","max:vendor.creditLimit"] | ||||||||
Array of equal (object) or not equal (object) or less than (object) or (less than or equal (object)) or greater than (object) or (greater than or equal (object)) or in (object) or not in (object) or between (object) or not between (object) or contains (object) or does not contain (object) or starts with (object) or does not start with (object) or ends with (object) or does not end with (object) Filter conditions to select the objects to return based on their field values. You use operators and conditions to build your filter, such as Example: [{"$eq":{"status":"active"}},{"$gt":{"totalDue":"1000"}},{"$contains":{"name":"Acme"}}] | |||||||||
Array Any of: Field value must be equal to this specified value. For date fields, you can use these macro values that are relative to the current date or the
These are most useful for queries that you want to save and use repeatedly, such as for views or reports. Just change the For example,
| |||||||||
filterExpression | string Default: "and" Logical operators to apply when there are multiple filter conditions. The conditions in the Shortcuts:
Example: "(1 and 2) or 3" | ||||||||
| |||||||||
Array of objects Set the order of the results by specifying field names to sort by and whether they should be in ascending or descending order. Example: [{"totalDue":"asc"},{"lastPaymentMadeDate":"desc"}] | |||||||||
Array
| |||||||||
start | integer First record of the result set to include in the response. Example: 1 | ||||||||
size | integer Number of records to include in the response. Example: 100 |
OK
Bad Request
{- "object": "inventory-control/aisle",
- "filters": [
- {
- "$contains": {
- "description": "Kitchen"
}
}
], - "fields": [
- "key",
- "id",
- "description",
- "href"
], - "orderBy": [
- {
- "id": "asc"
}
]
}
{- "ia::result": [
- {
- "key": "4",
- "id": "A003",
- "description": "Aisle 3 Refrigerators (Kitchen)",
- "href": "/objects/inventory-control/aisle/4"
}, - {
- "key": "5",
- "id": "A004",
- "description": "Aisle 4 Dishwashers (Kitchen)",
- "href": "/objects/inventory-control/aisle/5"
}, - {
- "key": "6",
- "id": "A005",
- "description": "Aisle 5 Microwaves (Kitchen)",
- "href": "/objects/inventory-control/aisle/6"
}
], - "ia::meta": {
- "totalCount": 3,
- "start": 1,
- "pageSize": 100,
- "next": null,
- "previous": null
}
}