GET /pricebook

Retrieve all pricebook entries for a given company.

Query parameters

  • companyID integer Required

Responses

  • 200 application/json

    List of pricebook entries

    Hide response attributes Show response attributes object
    • pricebookID integer
    • BookName string
    • description string
    • industry string
    • status string
    • companyID integer
    • createdBy integer
    • updatedBy integer
  • 500

    Error occurred while retrieving pricebook entries

GET /pricebook
curl \
 -X GET http://api.example.com/pricebook?companyID=42
Response examples (200)
[
  {
    "pricebookID": 42,
    "BookName": "string",
    "description": "string",
    "industry": "string",
    "status": "string",
    "companyID": 42,
    "createdBy": 42,
    "updatedBy": 42
  }
]