Methods

  • get - Get Product Prices
  • get - Get Product Prices
  • put - Update Product Prices
  • put - Update Product Prices

Properties

{
    "groupPrices": [
        {
            "customerGroupId": "int64",
            "graduatedPrices": [
                {
                    "graduatedPrice": "double",
                    "threshold": "double"
                }
            ],
            "groupPrice": "double"
        }
    ],
    "price": "double",
    "productId": "int64",
    "taxClassId": "int64"
}
{
    "groupPrices": [
        {
            "customerGroupId": 1,
            "graduatedPrices": [
                {
                    "graduatedPrice": 115,
                    "threshold": 5
                },
                {
                    "graduatedPrice": 100,
                    "threshold": 10
                }
            ],
            "groupPrice": 122.122
        },
        {
            "customerGroupId": 2,
            "groupPrice": 100
        },
        {
            "customerGroupId": 3,
            "graduatedPrices": [
                {
                    "graduatedPrice": 98,
                    "threshold": 2.5
                },
                {
                    "graduatedPrice": 95,
                    "threshold": 5
                },
                {
                    "graduatedPrice": 90,
                    "threshold": 7.5
                }
            ]
        }
    ],
    "price": 123.123
}
Name Type Description Additional
groupPrices[] array Required
groupPrices[].customerGroupId int64 Optional , read only.
groupPrices[].graduatedPrices[] array Optional
groupPrices[].graduatedPrices[].graduatedPrice double Required
groupPrices[].graduatedPrices[].threshold double Required
groupPrices[].groupPrice double Optional
price double Required
productId int64 Required , read only.
taxClassId int64 Required , read only.