---
title: "Product attribute list."
method: GET
path: "/rest/api/warehouse/product/attributes/"
tags: ["Warehouse"]
---

# Product attribute list.

`GET /rest/api/warehouse/product/attributes/`

list of product attributes

## Query parameters

- `productId[]` integer[]
- `offset` integer — Position indicator (0-beginning, 1-skips one record, 256 - skips 256 records)
- `limit` integer — Limit of returned results, max 512 records

## Response `200`

Attributes array

- RestProductAttributeIndexListResponse
  - `attributes` RestProductAttributeDTO[], required — Product attribute items list
    - `id` integer, required — Internal Attribute ID
    - `productId` integer, required — Internal Product ID
    - `type` 1 | 2 | 9 | 16 — Attribute type ('1-Text', 2-'boolean', '9-textarea', '16-feature')
    - `values` union[] — Product Attribute Values
      - union
        - RestProductAttributeTextDTO — This object represents product Attribute text DTO .
          - `value` string — Value
          - `id` integer — Internal Attribute ID
        - RestProductAttributeTextAreaDTO — This object represents product Attribute text area DTO .
          - `value` string — Value
          - `id` integer — Internal Attribute ID
        - RestProductAttributeBooleanDTO — This object represents product Attribute text boolean DTO .
          - `value` boolean — Value
          - `id` integer — Internal Attribute ID
        - RestProductAttributeFeatureDTO
          - `value` string — Value
          - `id` integer — Internal Attribute ID
    - `attributeTypeId` integer — Attribute type ID (Id from the attributes list)
  - `totalCount` integer — Number of matching results
  - `currentOffset` integer — Current list offset
  - `pageResultCount` integer — Number of results per page

## Other responses

- `401` — Authorization failed

---

[API](https://skmtc.dev/apilo/apis/apilo-rest-api.md) · [All operations](https://skmtc.dev/apilo/apis/apilo-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/apilo/apilo-rest-api/revisions/a0f9dcdba6cc/schema)
