Get Transaction Line Item Pricing Items

get

/rest/v16/pricingSetup/preview/{bsId}/items/{docNumber}

Use this endpoint to retrieve the line level pricing items for the specified transaction line item.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : PricingPreviewLineItem
Type: object
Show Source
Nested Schema : Created By
Title: Created By
Read Only: true
The details of the user who created the record.
Match All
Show Source
Nested Schema : itemAttributeValues
Type: object
Nested Schema : Last Modified By
Title: Last Modified By
Read Only: true
The details of the user who modified the record.
Match All
Show Source
Nested Schema : UserDetails
Type: object
Show Source
Back to Top

Examples

The following example shows how to retrieve the line level pricing items for the specified transaction line item 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/pricingSetup/preview/38635017/items/6

Response Body Sample

{
  "documentNumber": 6,
  "partNumber": "Mental Wellness Apps",
  "bomItemName": "Mental Wellness Apps",
  "rootBomItemName": "Telehealth and Wellness",
  "itemAttributeValues": {
    "_bomItemVariableName": "04881379b2350a612db0cb1bb40de11a2e53f8dfe3320d598c6c489d8b399068",
    "_quantity": 11,
    "_serviceDurationPeriod": "",
    "_serviceDuration": "",
    "_requestedAgreementNumber": "",
    "_requestedRatePlanNumber": "mentalWellnessAppsPlan1"
  }
}
Back to Top