A row 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 row. 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 Rows |
OK
Bad Request
{- "ia::result": [
- {
- "key": "354",
- "id": "R1ADW",
- "href": "/objects/inventory-control/row/354"
}, - {
- "key": "355",
- "id": "R1BDW",
- "href": "/objects/inventory-control/row/355"
}, - {
- "key": "356",
- "id": "R2ADW",
- "href": "/objects/inventory-control/row/356"
}
], - "ia::meta": {
- "totalCount": 3,
- "start": 1,
- "pageRow": 100
}
}
Creates a new row.
Subscription | Inventory Control |
---|---|
Configuration | Advanced workflows is enabled. |
User ype | Business |
Permissions | List, View, Add Rows |
id required | string Name or other unique identifier for the row. The row ID cannot be modified. Example: "R3ADW" |
description | string Description for the row. Example: "Row 3A Dishwashers" |
Created
Bad Request
{- "id": "R3ADW",
- "description": "Row 3A Dishwashers"
}
{- "ia::result": {
- "key": "543",
- "id": "R3ADW",
- "href": "/objects/inventory-control/row/543"
}, - "ia::meta": {
- "totalCount": 1
}
}
Returns detailed information for a specified row.
Subscription | Inventory Control |
---|---|
Configuration | Advanced workflows is enabled. |
User ype | Business, CRM, Employee, Warehouse |
Permissions | List, View Rows |
key required | string System-assigned key for the row. Example: 354 |
OK
Bad Request
{- "ia::result": {
- "key": "354",
- "id": "R3ADW",
- "description": "Row 3 A Dishwashers",
- "audit": {
- "createdDateTime": "2021-05-07T01:15:23Z",
- "modifiedDateTime": "2021-05-07T01:15:23Z",
- "createdBy": "13",
- "modifiedBy": "13"
}, - "href": "/objects/inventory-control/row/354"
}, - "ia::meta": {
- "totalCount": 1
}
}
Updates an existing row 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 Rows |
key required | string System-assigned key for the row. Example: 354 |
description | string Description for the row. Example: "Row 3A Dishwashers" |
OK
Bad Request
{- "description": "Row 3A1 Dishwashers"
}
{- "ia::result": {
- "key": "2",
- "id": "R3ADW",
- "href": "/objects/inventory-control/row/2"
}, - "ia::meta": {
- "totalCount": 1
}
}
Deletes a row. You can delete a row if it is not being used and you no longer need it. Deleted rows cannot be recovered.
Subscription | Inventory Control |
---|---|
Configuration | Advanced workflows is enabled. |
User ype | Business |
Permissions | List, View, Delete Rows |
key required | string System-assigned key for the row. Example: 354 |
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/row" | ||||||||
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/row",
- "filters": [
- {
- "$contains": {
- "description": "Aisle 5"
}
}
], - "fields": [
- "key",
- "id",
- "href"
], - "orderBy": [
- {
- "id": "asc"
}
]
}
{- "ia::result": [
- {
- "key": "3",
- "id": "R5001",
- "description": "Aisle 5 Row 1",
- "href": "/objects/inventory-control/row/3"
}, - {
- "key": "4",
- "id": "R5002",
- "description": "Aisle 5 Row 2",
- "href": "/objects/inventory-control/row/4"
}, - {
- "key": "5",
- "id": "R5003",
- "description": "Aisle 5 Row 3",
- "href": "/objects/inventory-control/row/5"
}, - {
- "key": "6",
- "id": "R5004",
- "description": "Aisle 5 Row 4",
- "href": "/objects/inventory-control/row/6"
}, - {
- "key": "7",
- "id": "R5005",
- "description": "Aisle 5 Row 5",
- "href": "/objects/inventory-control/row/7"
}, - {
- "key": "8",
- "id": "R5006",
- "description": "Aisle 5 Row 6",
- "href": "/objects/inventory-control/row/8"
}, - {
- "key": "9",
- "id": "R5007",
- "description": "Aisle 5 Row 7",
- "href": "/objects/inventory-control/row/9"
}, - {
- "key": "10",
- "id": "R5008",
- "description": "Aisle 5 Row 8",
- "href": "/objects/inventory-control/row/10"
}
], - "ia::meta": {
- "totalCount": 8,
- "start": 1,
- "pageSize": 100,
- "next": null,
- "previous": null
}
}