---
title: "Products.get"
method: GET
path: "/entities/Products/{id}"
tags: ["Product"]
---

# Products.get

`GET /entities/Products/{id}`

Returns Product with given id

## Path parameters

- `id` string, uuid, required

## Response `200`

Product data

- object
  - `success` boolean — True when response succeeded, false on error.
  - `data` Product
    - `is_delete_protected` boolean, required — Tells if the entity instance is protected against delete (Entities that need to be present in the system at any time). Delete action still may fail if entity is deletable, due some other additional validations.
    - `id` string, uuid, required — Unique identifier of entity.
    - `is_deleted` boolean — Specifies if the entity is considered deleted.
    - `modified` string, date-time — Last modification time.
    - `created` string, date-time — Creation time.
    - `currency_exchange_rates_list` string, uri — Currency exchange rate list used to convert monetary fields linked to this product. Empty to inherit the team space default. Relation to CurrencyExchangeRatesList. By default it is returned as URI to related resource. Using parameter 'expand', it will return full entity. See: 'CurrencyExchangeRatesList' object for properties.
    - `picture` string, uri — Product picture. Relation to CloudObject. By default it is returned as URI to related resource. Using parameter 'expand', it will return full entity. See: 'CloudObject' object for properties.
    - `product_category` string, uri — Product category this product belongs to. Categories form a hierarchy used in the catalog browser. Relation to ProductCategory. By default it is returned as URI to related resource. Using parameter 'expand', it will return full entity. See: 'ProductCategory' object for properties.
    - `product_type` string, uri, required — Product type that classifies this product. Product types are configurable per team space and drive which form, fields and product-line behavior apply. Relation to ProductType. By default it is returned as URI to related resource. Using parameter 'expand', it will return full entity. See: 'ProductType' object for properties.
    - `allowed_pipelines` 1 | 2 — Whether this product can be added to all pipelines or only the explicitly linked subset (see product_pipeline_relations). Integer enum value: 1 - All, 2 - Selected
    - `currency_exchange_rates_list_id` string, uuid — Id of the currency exchange rate list applied to this product.
    - `description` string — Free-form description of the product.
    - `name` string, required — Name of the product, shown in catalogues and pickers.
    - `picture_id` string, uuid — Id of the product picture document.
    - `product_category_id` string, uuid — Id of the product category.
    - `product_type_id` string, uuid — Id of the product type.
    - `sku` string — Stock-keeping unit (SKU) identifier of the product. Must be unique across products.
    - `unit_symbol` string — Unit of measure shown next to product quantities (e.g. pcs, kg, hours).
    - `revision` integer — Revision when entity was lastly changed.
    - `product_pipeline_relations` string[] — Deprecated pipeline connection.
    - `product_pipelines` object — Configuration of Pipelines where the Product can be used.
      - `pipelines` string[], required
      - `allowed_pipelines` 1 | 2, required — Whether this product can be added to all pipelines or only the explicitly linked subset (see product_pipeline_relations). Integer enum value: 1 - All, 2 - Selected
    - `formatted_name` string, required — Display version of the product name, used in lists and references.
    - `oppty_product_relation_type_id` string, uuid, required — Id of the product line-item type derived from product_type. Used as a filter when listing relations on opportunities and quotes. Read-only.

## Other responses

- `404` — Sent when invalid ID is given
- `500` — unexpected error

---

[API](https://skmtc.net/aws/apis/pipeliner-cloud-api.md) · [All operations](https://skmtc.net/aws/apis/pipeliner-cloud-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/aws/pipeliner-cloud-api/versions/e8c12ae60aca/schema)
