Get Price Book

get

/rest/v16/priceBooks/{variableName}

This action retrieves the specified Price Book

Request

Path Parameters
Back to Top

Response

Default Response

Body ()
Root Schema : priceBooks
Type: object
Show Source
Nested Schema : Status
Type: object
Title: Status
Price book status
Show Source
  • Title: Display Value
    Translated display name of the type for which fixed list of values can be defined.
  • Title: Id
    Primary Key of the fixed list of value resource.
  • Title: Lookup Code
    Language independent code of the fixed list of value.
Back to Top

Examples

The following example shows how to retrieve a specified Price Book by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl -X GET -i -H "Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQg" -H "Accept: application/json"
https://sitename.oracle.com/rest/v16/priceBooks

Response Body Sample

{
   "id": 4125467,
   "dateModified": "2018-05-03T11:07:28.000Z",
   "status": 3,
   "variableName": "_default_price_book",
   "description": "Default Price Book. this is default",
   "orderNumber": 1,
   "name": "Base Price",
   "refId": -1,
   "dateAdded": "2005-11-15T20:56:15.000Z",
   "companyId": 4118171,
   "partnerPriceBookId": null,
   "multiplierValue": 1,
   "refType": 1
}
         
Back to Top