updatePrices

put

/ccadmin/v1/prices

Update Prices. Updates a list of prices or creates a new price item if there isn't one.

Request

Supported Media Types
Body ()
Root Schema : updatePrices_request
Type: object
Show Source
Example:
{
    "items":[
        {
            "productId":"prod10013",
            "priceListId":"listPrices",
            "listPrice":50
        },
        {
            "productId":"prod10014",
            "volumePrice":{
                "bulkPrice":{
                    "numLevels":3,
                    "levels":[
                        {
                            "price":19,
                            "levelMaximum":5,
                            "levelMinimum":1
                        },
                        {
                            "price":12.35,
                            "levelMaximum":30,
                            "levelMinimum":21
                        },
                        {
                            "price":10.25,
                            "levelMinimum":31
                        }
                    ]
                }
            },
            "priceListId":"listPrices",
            "skuId":"sku10040"
        },
        {
            "priceListId":"examplePriceListGroupId_listPrices",
            "skuId":"sku10041",
            "listPrice":50
        }
    ]
}
Nested Schema : items
Type: array
List of Prices
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : volumePrice
Type: object
Volume price of the price item
Show Source
Nested Schema : pricingScheme
Type: object
Pricing scheme can be either tieredPrice or bulkPrice
Show Source
Nested Schema : levels
Type: array
Price levels array for volume price
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top

Response

Supported Media Types

200 Response

The following model is returned if the operation succeeds.
Body ()
Root Schema : updatePrices_response
Type: object
Show Source
Nested Schema : items
Type: array
List of Prices
Show Source
Nested Schema : items
Type: object
Show Source
Nested Schema : volumePrice
Type: object
Volume price of the price item
Show Source
Nested Schema : pricingScheme
Type: object
Pricing scheme can be either tieredPrice or bulkPrice
Show Source
Nested Schema : levels
Type: array
Price levels array for volume price
Show Source
Nested Schema : items
Type: object
Show Source
Example Response (application/json)
{
    "items":[
        {
            "productId":"prod10013",
            "priceListId":"examplePriceListGroupId_listPrices",
            "listPrice":50
        },
        {
            "productId":"prod10014",
            "volumePrice":{
                "bulkPrice":{
                    "numLevels":3,
                    "levels":[
                        {
                            "price":19,
                            "levelMaximum":5,
                            "levelMinimum":1
                        },
                        {
                            "price":12.35,
                            "levelMaximum":30,
                            "levelMinimum":21
                        },
                        {
                            "price":10.25,
                            "levelMinimum":31
                        }
                    ]
                }
            },
            "priceListId":"examplePriceListGroupId_listPrices",
            "skuId":"sku10040"
        },
        {
            "priceListId":"examplePriceListGroupId_listPrices",
            "skuId":"sku10041",
            "listPrice":50
        }
    ]
}

Default Response

The error response. The following are the internal error codes thrown by this API when the request processing fails in Oracle Commerce Cloud: |Error Code|Description| |------------------|------------------| |25002|Missing required property: productId| |25002|No item found for the following type and ID: product, prod10013| |25003|Missing required property: skuId| |25003|No item found for the following type and ID: skuId, sku10040| |25005|Missing required property: priceList| |25005|No item found for the following type and ID: priceList, examplePriceListGroupId_listPrices| |25008|SKU sku10041 has 2 parent products.| |25009|Error setting price| |25020|Both simple price and volume price can not be set for price item.| |100170|Either one of the product ID or sku ID is required.| |100171|Price list ID is required.| |100172|List price or Volume price is required.| |100175|Not a valid input format for the data.| |100176|Input items to be updated exceeded the max limit 250.|
Body ()
Root Schema : errorModel
Type: object
Show Source
Nested Schema : errors
Type: array
An optional list of errors if multiple errors were encountered
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top