---
title: "Add Price Grid Items to a Price Grid"
method: POST
path: "/pricegridmanager.add/{id}"
tags: ["Live Price Grids"]
---

# Add Price Grid Items to a Price Grid

`POST /pricegridmanager.add/{id}`

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.
```json
{
   "data":{
      "skus":[
         "p0001",
         "p0002"
      ]
   }
}
```

**Example 2**:<p>
Adds only products where `formulaName` = "CompetitionPricing".
```json
{
   "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 Permission| Roles with the Required Permission |
---------|----------|
 PRICEGRID_ADD | Edit LPG & Add Products (`PB_PRICEGRIDEDITOR_ADD_SKU`), Administer LPG (`PB_PRICEGRIDS`)

## Request body

- object
  - `data` object, required
    - `filterCriteria` object, required
      - `operator` string, required
      - `criteria` object[], required
        - `fieldName` string, required
        - `operator` 'equals' | 'iEquals' | 'notEqual' | 'iNotEqual' | 'isNull' | 'notNull' | 'contains' | 'iContains' | 'containsPattern' | 'iContainsPattern' | 'notContains' | 'iNotContains' | 'startsWith' | 'iStartsWith' | 'notStartsWith' | 'iNotStartsWith' | 'endsWith' | 'iEndsWith' | 'notEndsWith' | 'iNotEndsWith' | 'iBetween' | 'iBetweenInclusive' | 'inSet' | 'notInSet', required — Specify an operator of the filter criteria.
        - `value` string, required

## Response `200`

OK

- object
  - `response` object
    - `node` string
    - `data` unknown
    - `status` number

---

[API](https://skmtc.net/pricefx/apis/the-pricefx-backend-api.md) · [All operations](https://skmtc.net/pricefx/apis/the-pricefx-backend-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pricefx/the-pricefx-backend-api/versions/0850b5d6be73/schema)
