Product API
Search the ABC Supply product catalog and view product information. Get product availability and key product attributes across several product hierarchies.
The Get Frequent Items endpoint returns information about items invoiced to the Bill-To Account from ABC Supply in the last 180 days, sorted by frequency. The endpoint response optionally includes item availability at a branch if the branch number is provided in the request.
Product API
Get Frequent Items
GET /items/{billToNumber}/frequents
Get frequently invoiced items for a Bill-To account
Sandbox
Production
Authorization
For Individuals and Businesses, use OAuth 2.0 server or user token with the product.read scope.
For Third-Party Aggregators, use OAuth 2.0 user token with the product.read scope.
Request
Query Parameters
Name
Type
Description
itemsPerPage
integer
The number of items to display per page.
pageNumber
integer
The page number of the results to return from the request.
branchNumber
integer
Optional ABC branch number to check availability of items in the response.
URI Parameters
The URI parameter {billToNumber} is the Bill-To account number.
Example Request
Request with optional branch provided for item availability
GET /api/product/v1/items/2015825-1/frequents?itemsPerPage=10&pageNumber=1&branchNumber=118 HTTP/1.1
Host: partners.abcsupply.com
Authorization: Bearer <TOKEN>
Response
Example Response
Response payload with optional branch availability
{
"pagination": {
"pageNumber": 1,
"pageCount": 1,
"pageSize": 10,
"totalCount": 2
},
"items": [
{
"itemNumber": "02GATZ3CH",
"branchNumber": 118,
"isAvailableForBranch": true,
"isFavorite": false,
"count": 7,
"itemDescription": "GAF Timberline HDZ with StrikeZone Shingles Charcoal 3 Bundles per Square",
"uom": "BD - Bundle",
"dimensions": [
{
"width": {
"value": 0.0000,
"uom": null,
"description": "Width"
},
"thickness": {
"value": 0.0000,
"uom": null,
"description": "Thickness"
}
}
]
},
{
"itemNumber": "30MIR975BL",
"branchNumber": 118,
"isAvailableForBranch": true,
"isFavorite": false,
"count": 2,
"itemDescription": "Rainbuster 975 Black 300 ML",
"uom": "TB - Tube",
"dimensions": [
{
"width": {
"value": 0.0000,
"uom": null,
"description": "Width"
},
"thickness": {
"value": 0.0000,
"uom": null,
"description": "Thickness"
}
}
]
}
]
}
Name
Type
Description
pagination
integer
The object containing pagination information.
pagination.pageNumber
integer
The current page number of the response.
pagination.pageCount
integer
The number of total pages in the response.
pagination.pageSize
integer
The number of items returned per page.
pagination.totalCount
integer
The total number of items returned in the response.
items
array
The list of items frequently invoiced for the provided Bill-To account.
items[].itemNumber
string
The ABC Supply item number.
items[].branchNumber
integer
The ABC Supply branch number provided in the request.
items[].isAvailableForBranch
boolean
The boolean value specifying if the item is available at the provided branch (e.g., true, false).
items[].isFavorite
boolean
The boolean value specifying if the item is marked as a favorite item for the provided Bill-To account (e.g., true, false).
items[].count
integer
The number of times the item has been invoiced for the provided Bill-To account in the last 90 days.
items[].itemDescription
string
The description of the item.
items[].uom
string
The unit of measure description used when ordering the item.
items[].dimensions
array
The list of available dimension information for the item, if applicable.
items[].dimensions[].width
object
The object describing the width of the item.
items[].dimensions[].width.value
float
The value of the item width.
items[].dimensions[].width.uom
string
The unit of measure of the item width (e.g., “in”).
items[].dimensions[].width.description
string
The description of the item width.
items[].dimensions[].thickness
object
The object describing the thickness of the item.
items[].dimensions[].thickness.value
float
The value of the item thickness.
items[].dimensions[].thickness.uom
string
The unit of measure of the item thickness (e.g., “in”).
items[].dimensions[].thickness.description
string
The description of the item thickness.
HTTP Status Codes
Code
Status
Description
200
OK
The request and response were sent successfully.
400
Bad Request
Ensure the query parameters and values provided are valid.
401
Unauthorized
The provided account does not have access to the requested date. Ensure the provided account is a valid Bill-To account for the user.
500
Internal Server Error
The server was unable to process the request.