Update one pricing strategy

patch

/fscmRestApi/resources/11.13.18.05/pricingStrategies/{PricingStrategyId}

Request

Path Parameters
Header Parameters
  • 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".
  • 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.
Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
Nested Schema : Allowed Override Currencies
Type: array
Title: Allowed Override Currencies
The Allowed Override Currencies resource associates the currencies that are allowed to override the default currency of the pricing strategy.
Show Source
Nested Schema : Associated Discount Lists
Type: array
Title: Associated Discount Lists
The Associated Discount Lists resource associates discount lists with pricing strategies.
Show Source
Nested Schema : Associated Segment Price Lists
Type: array
Title: Associated Segment Price Lists
The Associated Segment Price Lists resource associates segment price lists with pricing strategies.
Show Source
Nested Schema : Flexfields for Pricing Strategy Headers
Type: array
Title: Flexfields for Pricing Strategy Headers
The Flexfields for Pricing Strategy Headers resource associates descriptive flexfield segments and their values with a pricing strategy.
Show Source
Nested Schema : schema
Type: object
Show Source
Nested Schema : schema
Type: object
Show Source
Nested Schema : Flexfields for Associated Discount Lists
Type: array
Title: Flexfields for Associated Discount Lists
The Flexfields for Associated Discount Lists resource associates descriptive flexfield segments and their values with a pricing strategy detail.
Show Source
Nested Schema : Discount Lists
Type: array
Title: Discount Lists
The Discount Lists resource manages discounts of products and services.
Show Source
Nested Schema : schema
Type: object
Show Source
Nested Schema : pricingStrategies-associatedDiscountLists-discountLists-item-patch-request
Type: object
Show Source
Nested Schema : pricingStrategies-associatedSegmentPriceLists-item-patch-request
Type: object
Show Source
Nested Schema : Flexfields for Associated Segment Price Lists
Type: array
Title: Flexfields for Associated Segment Price Lists
The Flexfields for Associated Segment Price Lists resource associates descriptive flexfield segments and their values with a pricing strategy detail.
Show Source
Nested Schema : Price Lists
Type: array
Title: Price Lists
The Price Lists resource manages price lists of products and services.
Show Source
Nested Schema : pricingStrategies-associatedSegmentPriceLists-DFF-item-patch-request
Type: object
Show Source
Nested Schema : pricingStrategies-associatedSegmentPriceLists-priceLists-item-patch-request
Type: object
Show Source
Nested Schema : schema
Type: object
Show Source
Back to Top

Response

Supported Media Types

Default Response

The following table describes the default response for this task.
Headers
  • 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".
  • 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.
Body ()
Root Schema : pricingStrategies-item-response
Type: object
Show Source
Nested Schema : Allowed Override Currencies
Type: array
Title: Allowed Override Currencies
The Allowed Override Currencies resource associates the currencies that are allowed to override the default currency of the pricing strategy.
Show Source
Nested Schema : Associated Discount Lists
Type: array
Title: Associated Discount Lists
The Associated Discount Lists resource associates discount lists with pricing strategies.
Show Source
Nested Schema : Associated Segment Price Lists
Type: array
Title: Associated Segment Price Lists
The Associated Segment Price Lists resource associates segment price lists with pricing strategies.
Show Source
Nested Schema : Flexfields for Pricing Strategy Headers
Type: array
Title: Flexfields for Pricing Strategy Headers
The Flexfields for Pricing Strategy Headers resource associates descriptive flexfield segments and their values with a pricing strategy.
Show Source
Nested Schema : pricingStrategies-allowedOverrideCurrencies-item-response
Type: object
Show Source
Nested Schema : pricingStrategies-associatedDiscountLists-item-response
Type: object
Show Source
Nested Schema : Flexfields for Associated Discount Lists
Type: array
Title: Flexfields for Associated Discount Lists
The Flexfields for Associated Discount Lists resource associates descriptive flexfield segments and their values with a pricing strategy detail.
Show Source
Nested Schema : Discount Lists
Type: array
Title: Discount Lists
The Discount Lists resource manages discounts of products and services.
Show Source
Nested Schema : pricingStrategies-associatedDiscountLists-DFF-item-response
Type: object
Show Source
Nested Schema : pricingStrategies-associatedDiscountLists-discountLists-item-response
Type: object
Show Source
Nested Schema : pricingStrategies-associatedSegmentPriceLists-item-response
Type: object
Show Source
Nested Schema : Flexfields for Associated Segment Price Lists
Type: array
Title: Flexfields for Associated Segment Price Lists
The Flexfields for Associated Segment Price Lists resource associates descriptive flexfield segments and their values with a pricing strategy detail.
Show Source
Nested Schema : Price Lists
Type: array
Title: Price Lists
The Price Lists resource manages price lists of products and services.
Show Source
Nested Schema : pricingStrategies-associatedSegmentPriceLists-DFF-item-response
Type: object
Show Source
Nested Schema : pricingStrategies-associatedSegmentPriceLists-priceLists-item-response
Type: object
Show Source
Nested Schema : pricingStrategies-DFF-item-response
Type: object
Show Source
Back to Top

Examples

This example describes how to update a pricing strategy.

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/pricingStrategies/PricingStrategyId"

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.

{
	"StrategyDescription": "Strategy for corporate pricing for FY2020"
}

Example Response Body

The following example includes the contents of the response body in JSON format:

{
	"PricingStrategyId": 300100195448908,
	"StrategyName": "Corporate Strategy",
	"StrategyDescription": "Strategy for corporate pricing for FY2020",
	"Objective": null,
	"ObjectiveCode": null,
	"BusinessUnit": "Vision Operations",
	"BusinessUnitId": 204,
	"Status": "Approved",
	"StatusCode": "APPROVED",
	"DefaultCurrency": "US Dollar",
	"DefaultCurrencyCode": "USD",
	"GLConversionType": null,
	"GLConversionTypeCode": null,
	"StrategyStartDate": "2019-12-03T02:53:00+00:00",
	"StrategyEndDate": null,
	"AllowPriceListOverride": "N",
	"AllowCurrencyOverride": "N",
	"CreationDate": "2020-02-18T07:55:50+00:00",
	"CreatedBy": "PRICING_MGR_OPERATIONS",
	"LastUpdateDate": "2020-02-18T08:37:13+00:00",
	"LastUpdatedBy": "PRICING_MGR_OPERATIONS"
}
Back to Top