Company Products
Get a paginated list of products associated with a specific company.
Each product includes a calculated price field that reflects the company-specific
pricing based on their assigned price levels, price groups, and any applicable
discounts or markups for the product’s category.
For detailed information about the filtering system and available operators, refer to the Filter System Documentation.
Available Filters
String Filters
name: Product namedescription: Product descriptionsku: Product SKU (searches both internal SKU and alternate SKUs)upc: Product UPC/Barcodetag: Product tagsq: General search matches name OR upc OR skucategory.name: Filter by category namesub_category.name: Filter by sub-category namesupplier.name: Filter by supplier name
Integer Filters
category.id: Filter by category IDsub_category.id: Filter by sub-category IDsupplier.id: Filter by supplier ID
Float Filters
retail_price: Product retail pricewholesale_price: Product wholesale price
Boolean Filters
sellable: If the product is sellable or notdiscontinued: If the product is discontinued
DateTime Filters
created_at: When the product was createdupdated_at: When the product was last updated
Examples
# Find products by SKU (includes alternate SKUs)
?sku[eq]=SKU-001
# Find products with specific retail price range
?retail_price[gte]=50.00&retail_price[lte]=100.00
# Find recently updated products
?updated_at[gte]=2024-01-01 00:00:00
# Search products by name
?name[contains]=Test Product
# Find products by category and sub-category
?category.name[eq]=Electronics&sub_category.name[eq]=Smartphones
# Find products by supplier
?supplier.name[contains]=Acme
Authorizations
Authenticate using a bearer token. To create a token, navigate to /settings/api-tokens and click Create API Token.
Path Parameters
The unique identifier of the company
Query Parameters
Page number for pagination
Number of items per page (max 100)
x <= 100Filter by name OR upc OR sku
Filter by product name
Filter by product description
Filter by SKU (searches both internal and alternate SKUs)
Filter by UPC/Barcode
Filter by sellable status
Filter by whether the product is discontinued
Filter by retail price
Filter by wholesale price
Filter by creation date
Filter by last update date
Filter by product tags
Filter by category ID
Filter by category name
Filter by sub-category ID
Filter by sub-category name
Filter by supplier ID
Filter by supplier name