Salesbuildr Products
Overview
The product catalog in Salesbuildr contains items that can be added to quotes. Products include hardware, software licenses, services, and any other billable items.
Search Products
GET /products?search=<term>&category_id=<id>&from=0&size=25
Parameters:
search- Search by product namecategory_id- Filter by categoryfrom- Pagination offsetsize- Results per page (max 100)
Get Product by ID
GET /products/{id}
Returns full product details including pricing, description, and category.
Key Fields
| Field | Description |
|---|---|
| id | Unique product identifier |
| name | Product display name |
| description | Product description |
| price | Default unit price |
| category | Product category |
| sku | Stock keeping unit |
Common Workflows
Find Products for a Quote
- Search for products:
GET /products?search=firewall - Review pricing and descriptions
- Note product IDs for quote creation
Browse by Category
- Search with category filter:
GET /products?category_id=5 - Page through results using from/size