Get a Price Agreement Setting
get
/rest/v19/pricingSetup/agreements/{agreementVariableName}/settings/{settingId}
Use this endpoint to retrieve the specified price agreement setting.
Request
Path Parameters
Query Parameters
-
fields: string
This parameter filters the resource attributes. Only the specified attributes are returned, which means that if no attributes are specified, all attributes are returned.
Response
Supported Media Types
- application/json
200 Response
Success
Root Schema : PriceModelSetting
Type:
Show Source
object
-
columnName:
string()
Title:
Column Name
The column name. -
createdBy:
Created By
Title:
Created By
Read Only:true
The details of the user who created the record. -
dateAdded:
string(yyyy-MM-dd'T'HH:mm:ss.SSS'Z')
Title:
Date Added
Read Only:true
Creation date of the Price Model Setting. -
dateModified:
string(yyyy-MM-dd'T'HH:mm:ss.SSS'Z')
Title:
Date Modified
Read Only:true
Last modified date of the Price Model Setting. -
groupAccessEnabled:
boolean()
Title:
Group Access Enabled
Read Only:true
Indicates whether the user has access to the groups segment -
id:
integer()
Title:
Id
Read Only:true
The Unique Identifier of the Price Model Setting. -
lastModifiedBy:
Last Modified By
Title:
Last Modified By
Read Only:true
The details of the user who modified the record. -
links:
array Links
Title:
Links
Read Only:true
The link relations associated with the resource instance. -
segmentLevelAccessType:
string()
Title:
Segment-level Access Type
Read Only:true
Segment-level Access Type
Nested Schema : Created By
Title:
Created By
Read Only:
true
The details of the user who created the record.
Match All
The details of the user who created the record.
Show Source
Nested Schema : Last Modified By
Title:
Last Modified By
Read Only:
true
The details of the user who modified the record.
Match All
The details of the user who modified the record.
Show Source
Nested Schema : Links
Type:
array
Title:
Links
Read Only:
true
The link relations associated with the resource instance.
Show Source
Nested Schema : UserDetails
Type:
Show Source
object
-
emailId:
string()
Title:
Email Id
Email Id of the user -
firstName:
string()
Title:
First Name
First Name of the user -
lastName:
string()
Title:
Last Name
Last Name of the user
Examples
The following examples show how to retrieve the specified price agreement setting by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.
curl - X GET -H "Authorization: Bearer <token>" - H "Content-type: application/json" https://sitename.oracle.com/rest/v19/pricingSetup/agreements/maintenanceAgreementaccount138/settings/3024493177?onlyData=true
Response Body Sample
{ "createdBy": { "firstName": "John", "lastName": "Nevil", "emailId": "john.nevil@cpq.com" }, "lastModifiedBy": { "firstName": "John", "lastName": "Nevil", "emailId": "john.nevil@cpq.com" }, "id": 3024493177, "columnName": "Service Duration Type", "dateModified": "2025-09-08T05:44:11Z", "dateAdded": "2025-09-08T05:44:11Z" }