---
title: "Get entity product list"
method: GET
path: "/crm/v1/static/entity-product-lists"
tags: ["products"]
---

# Get entity product list

`GET /crm/v1/static/entity-product-lists`

Returns product lists attached to CRM entities (deals). Each list contains products with quantities, prices, and discounts.

## Response `200`

Successful response

- EntityProductList[]
  - `id` integer
  - `entity_type` string
  - `entity_id` integer
  - `is_automatic_calculation` boolean
  - `amount_before_discount_and_tax` integer
  - `amount_discount` integer
  - `amount_tax` integer
  - `amount_before_tax` integer
  - `amount_total` integer
  - `list_products` ListProduct[]
    - `id` integer
    - `entity_product_list_id` integer
    - `product_id` integer
    - `title` string
    - `price` integer
    - `currency` string
    - `quantity` number
    - `measurement_unit_abbr` string
    - `discount_value` number
    - `discount_type` 'relative' | 'absolute'
    - `discount_price` integer
    - `tax_rate` number
    - `is_tax_included` boolean
    - `amount` integer
    - `product` Product
      - `id` integer
      - `product_category_id` integer
      - `measurement_unit_id` integer
      - `title` string
      - `article` string
      - `type` 'goods' | 'service'
      - `is_active` boolean
      - `availability` 'available' | 'not_available' | 'pending'
      - `quantity` number
      - `reserved_quantity` number
      - `description` string
      - `comment` string
      - `link` string
      - `created_at` integer
      - `updated_at` integer
      - `product_category` ProductCategory
        - `id` integer
        - `parent_id` integer
        - `name` string
        - `is_active` boolean
        - `created_at` integer
        - `updated_at` integer
        - `child_categories` ProductCategory[]
      - `measurement_unit` MeasurementUnit
        - `id` integer
        - `name` string
        - `abbr` string
        - `is_default` boolean
      - `prices` ProductPrice[]
        - `id` integer
        - `price` integer
        - `currency` string
        - `is_default` boolean
        - `tax` Tax
          - `id` integer
          - `name` string
          - `rate` number
          - `is_active` boolean
      - `files` string[]

## Other responses

- `401` — Access token is missing or invalid

---

[API](https://skmtc.net/uspacy/apis/crm-service-2.md) · [All operations](https://skmtc.net/uspacy/apis/crm-service-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/uspacy/crm-service-2/versions/f80578d43845/schema)
