---
title: "Delete a Price List Item"
method: POST
path: "/pricelistmanager.delete/PL/{id}/batch"
tags: ["Price Lists"]
---

# Delete a Price List Item

`POST /pricelistmanager.delete/PL/{id}/batch`

Deletes a Price List Item based on filter settings.

---
**Filter example**:<p>
Deletes only Price List Items where `comments` = "denied".
```json
{
  "data": {
    "filterCriteria": {
      "operator": "and",
      "criteria": [
        {
          "fieldName": "comments",
          "operator": "iEquals",
          "value": "denied"
        }
      ]
    }
  }
}
```
---

Required Permission| Roles with the Required Permission |
---------|----------|
 PRICELIST_REMOVE | Administer Price Lists (`PB_PRICELISTS`), Manage Price Lists (`PB_PRICELISTSEDITOR`)

## Request body

- object
  - `data` object, required
    - `filterCriteria` object, required
      - `operator` string, required
      - `criteria` object[], required
        - `fieldName` string, required
        - `operator` string, required
        - `value` string, required

## Response `200`

OK - Returns a number of deleted items.

- object
  - `response` object
    - `node` string
    - `csrfToken` string
    - `data` string[]
    - `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)
