Update a price tier
/fscmRestApi/resources/11.13.18.05/draftSupplierNegotiationResponses/{draftSupplierNegotiationResponsesUniqID}/child/lines/{LineId}/child/priceTiers/{PriceTierId}
Request
-
LineId(required): number
The value of this parameter could be a hash of the key that is used to uniquely identify the resource item. The client should not generate the hash key value. Instead, the client should query on the collection resource with a filter to navigate to a specific resource item. For example: products?q=InventoryItemId=
-
PriceTierId(required): integer
The value of this parameter could be a hash of the key that is used to uniquely identify the resource item. The client should not generate the hash key value. Instead, the client should query on the collection resource with a filter to navigate to a specific resource item. For example: products?q=InventoryItemId=
-
draftSupplierNegotiationResponsesUniqID(required): string
This is the hash key of the attributes which make up the composite key for the Draft Supplier Negotiation Responses resource and used to uniquely identify an instance of Draft Supplier Negotiation Responses. The client should not generate the hash key value. Instead, the client should query on the Draft Supplier Negotiation Responses collection resource in order to navigate to a specific instance of Draft Supplier Negotiation Responses to get the hash key.
-
Metadata-Context: string
If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
-
REST-Framework-Version: string
The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.
- application/json
object-
MaximumQuantity: number
Title:
Maximum QuantityMaximum number of units available for the price. -
MinimumQuantity: number
Title:
Minimum QuantityMinimum number of units available for the price. -
Price: number
Title:
PricePrice per unit offered for the quantity range.
Response
- application/json
Default Response
-
Metadata-Context:
If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
-
REST-Framework-Version:
The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.
object-
CreatedBy: string
Read Only:
trueMaximum Length:64Identifies the user who created the row. -
CreationDate: string
(date-time)
Read Only:
trueTimestamp of the creation of the row. -
LastUpdateDate: string
(date-time)
Read Only:
trueDate and time when the user most recently updated the line. -
LastUpdatedBy: string
Read Only:
trueMaximum Length:64User who most recently updated the line. -
Line: string
Read Only:
trueMaximum Length:25Number that identifies the negotiation line. -
LineId: integer
Title:
Line IDRead Only:trueValue that identifies the negotiation line. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
MaximumQuantity: number
Title:
Maximum QuantityMaximum number of units available for the price. -
MinimumQuantity: number
Title:
Minimum QuantityMinimum number of units available for the price. -
Price: number
Title:
PricePrice per unit offered for the quantity range. -
PriceTierId: integer
Title:
Price Tier IDRead Only:trueValue that identifies the price tier. -
ResponseNumber: integer
(int64)
Title:
Response NumberRead Only:trueValue that uniquely identifies the response. -
TargetPrice: number
Title:
Target PriceRead Only:trueTarget price for the price tier according to quantity.
arrayLinksobject-
href: string
Title:
hyperlink referenceThe URI to the related resource. -
kind: string
Title:
kindAllowed Values:[ "collection", "item", "describe", "other" ]The kind of the related resource. -
name: string
Title:
nameThe name of the link to the related resource. -
properties: object
properties
-
rel: string
Title:
relationAllowed Values:[ "self", "lov", "parent", "canonical", "child", "enclosure", "action", "custom" ]The name of the relation to the resource instance. Example: self.
object-
changeIndicator: string
Change indicator or the ETag value of the resource instance.
Examples
This example describes how to update a response value in a negotiation response line using a response ID, line ID, group ID, and price tiers ID.
Example cURL Command
Use the following cURL command to submit a request on the REST resource.
curl -X PATCH -u "username:password" -H "Content-Type: application/vnd.oracle.adf.resourceitem+json" -d 'request payload' "https://servername/fscmRestApi/resources/version/draftSupplierNegotiationResponses/draftSupplierNegotiationResponsesUniqID/child/lines/LineId/child/priceTiers/PriceTierId"
curl -X PATCH -u "username:password" -H "Content-Type: application/vnd.oracle.adf.resourceitem+json" -d 'request payload' "https://servername/fscmRestApi/resources/version/draftSupplierNegotiationResponses/188755/child/lines/1/child/priceTiers/1"
Example Request Body
The following example includes the contents of the request body in JSON format. You replace the request payload in the cURL command with the contents of the Example Request Body. The request payload specifies attribute values that the command will use in the record that it updates.
{
"Price": 1250
}
Example Response Body
{
"ResponseNumber": 188755,
"LineId": 1,
"Line": "1",
"PriceTierId": 1,
"MinimumQuantity": 1,
"MaximumQuantity": 100,
"Price": 1250.00,
"CreatedBy": "CVSUPPB01",
"CreationDate": "2022-10-05T03:26:48+00:00",
"LastUpdatedBy": "CVSUPPB01",
"LastUpdateDate": "2022-10-05T03:54:40.010+00:00",
"links": [
{
"rel": "self",
"href": "https://servername/fscmRestApi/resources/version/draftSupplierNegotiationResponses/188755/child/lines/1/child/priceTiers/1",
"name": "priceTiers",
"kind": "item",
"properties": {
"changeIndicator": . . .
}
},
{
"rel": "canonical",
"href": "https://servername/fscmRestApi/resources/version/draftSupplierNegotiationResponses/188755/child/lines/1/child/priceTiers/1",
"name": "priceTiers",
"kind": "item"
},
{
"rel": "parent",
"href": "https://servername/fscmRestApi/resources/version/draftSupplierNegotiationResponses/188755/child/lines/1",
"name": "lines",
"kind": "item"
}
]
}