v1

latestOpenAPI 3.0.02026-08-064842333.5 MB
Live Price Grids

Add Price Grid Items to a Price Grid

Adds products to the Live Price Grid.

<!-- theme: note -->

Information: Only products that are not already in the Price Grid will be added. You can specify products by skus (see the example 1 below) or by filter settings (see example 2).


Example 1:<p> Adds only products with specified SKUs.

{
   "data":{
      "skus":[
         "p0001",
         "p0002"
      ]
   }
}

Example 2:<p> Adds only products where formulaName = "CompetitionPricing".

{
   "data":{
      "filterCriteria":{
         "operator":"and",
         "criteria":[
            {
               "fieldName":"formulaName",
               "operator":"iEquals",
               "value":"CompetitionPricing"
            }
         ]
      }
   }
}

<!-- theme: info -->

To add items without a recalculation, use the /pricegridmanager.add/{id}/norecalc endpoint.

Required PermissionRoles with the Required Permission
PRICEGRID_ADDEdit LPG & Add Products (PB_PRICEGRIDEDITOR_ADD_SKU), Administer LPG (PB_PRICEGRIDS)
post/pricegridmanager.add/{id}

Request body

Response

OK