---
title: "List Live Price Grid Items"
method: POST
path: "/pricegridmanager.fetch/{id}"
tags: ["Live Price Grids"]
---

# List Live Price Grid Items

`POST /pricegridmanager.fetch/{id}`

Retrieves Live Price Grid Items.<p>
A filter can be applied.<p>
**Filter example**:<p>
Returns the item where `id` = 644.
<!-- theme: warning -->
> #### Please note:
> Filtering by `typedId` is not accepted by this enpoint.
```json
{
   "endRow":300,
   "oldValues":null,
   "operationType":"fetch",
   "startRow":0,
   "textMatchStyle":"exact",
   "data":{
      "_constructor":"AdvancedCriteria",
      "operator":"and",
      "criteria":[
         {
            "fieldName":"id",
            "operator":"equals",
            "value":644
         }
      ]
   }
}
```
<p>

Required Permission| Roles with the Required Permission |
---------|----------|
 PRICEGRID_FETCH | Edit LPG & Add Products (`PB_PRICEGRIDEDITOR_ADD_SKU`), Edit LPG (`PB_PRICEGRIDEDITOR`), Administer LPG (`PB_PRICEGRIDS`), Investigate for Support (`SUPPORT`), Administer Plasma (`PLASMA`), Manage Workflow Logics (`WF_BUILDER`)

## Request body

- object
  - `endRow` number — The number of the end row that defines the end of the result set's returned objects. Use this parameter if you want to implement paging for results.
  - `oldValues` unknown
  - `operationType` string — Enter `fetch`, null, or omit the param.
  - `startRow` number — The number of the first row that defines the start of the result set's returned objects. Use this parameter if you want to implement paging for results.
  - `textMatchStyle` string
  - `data` object
    - `_constructor` string
    - `operator` string
    - `criteria` object[]
      - `fieldName` string
      - `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' — Specify an operator of the filter criteria.
      - `value` string

## Response `200`

OK

- object
  - `response` object
    - `node` string
    - `csrfToken` string
    - `startRow` number
    - `data` object[]
      - `version` number
      - `typedId` string
      - `sku` string
      - `priceGridId` number
      - `manualEditVersion` number
      - `manualPriceExpired` boolean
      - `createDate` string
      - `createdBy` number
      - `lastUpdateDate` string
      - `lastUpdateBy` number
      - `itemExtensions` object
      - `completeResultsAvailable` boolean
    - `endRow` number — The number of the end row that defines the end of the result set's returned objects. Use this parameter if you want to implement paging for results.
    - `totalRows` number
    - `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)
