GET /pricebook/{pricebookID}

Retrieve a pricebook entry by its ID.

Path parameters

  • pricebookID integer Required

Responses

  • 200 application/json

    Pricebook entry details

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

    Pricebook entry not found

  • 500

    Error occurred while retrieving the pricebook entry

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