Retrieve all pricebook items for a given company.
GET
/pricebookItems
curl \
-X GET http://api.example.com/pricebookItems?companyID=42
Response examples (200)
[
{
"pricebookItemID": 42,
"itemName": "string",
"itemTypeID": 42,
"description": "string",
"price": 42.0,
"taxable": true,
"isAdjustable": true,
"rateType": "string",
"IsActive": true,
"companyID": 42,
"createdBy": 42,
"updatedBy": 42
}
]