Now Available
Product API
Get Frequent Items – FamilyId Added to Response
The familyId
is now returned for each item in the Get Frequent Items response. Please see the example below.
{
"pagination": {
"pageNumber": 1,
"pageCount": 100,
"pageSize": 1,
"totalCount": 100
},
"items": [
{
"itemNumber": "58FSIS3048",
"branchNumber": 28,
"familyId": "PFam_3475276",
"isAvailableForBranch": true,
"isFavorite": false,
"count": 29,
"itemDescription": "Elevate 3.0 Iso 4' X 8'",
"uom": "SH - Sheet",
"dimensions": [
{
"width": {
"value": 0,
"uom": null,
"description": "Width"
},
"thickness": {
"value": 0,
"uom": null,
"description": "Thickness"
}
}
]
}
]
}
Order API
Place Orders – Validation for Orders with More Than 99 Items
ABC Supply does not currently accept orders with more than 99 items on our old ERP system. For accounts limited by this situation, the following error will be returned in our Place Orders endpoint:
202 ACCEPTED
{
"request": {
"batchId": "B11558177",
"recievedTime": "2025-08-13T16:17:07.797",
"ordersReceived": 1,
"ordersFailed": 1,
"ordersSucceded": 0
},
"orders": [
{
"requestId": "1755119826424",
"confirmationNumber": null,
"message": "\"Orders are limited to less than 100 line items for this account. Please reduce the number of line items and resubmit your order.\""
}
]
}