---
title: "Displaying extended product attributes in NewStore Associate App"
slug: "displaying-extended-product-attributes-in-newstore-associate-app"
tags: ["config api", "Associate App configuration", "product import", "Associate App", "catalog", "inventory", "tutorial", "api"]
updated: 2024-11-12T12:56:27Z
published: 2024-11-12T12:56:27Z
canonical: "docs.newstore.com/displaying-extended-product-attributes-in-newstore-associate-app"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.newstore.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Displaying extended product attributes in NewStore Associate App

If products in your business contain extended attributes, they are not displayed in NewStore Associate App by default, even though they are imported into the platform during a [product import](/v1/docs/importing-data#integ-importdata). Enable this feature to display extended attributes of products on the `Product Details` screen in NewStore Associate App.

Extended product attributes can provide associates with extra information, such as the material an item is made out of.

> [!NOTE]
> Important
> 
> These extended attributes are added to the product before they are imported into the platform. **Do not** confuse them with
> 
> [extended attributes for an order or order item](/v1/docs/configuring-extended-attributes-in-newstore-associate-app#config-aa-editable-extended-attributes) added by associates using the app.

To enable this feature for your business:

1. Use the [Update app configuration](https://docs.newstore.net/api/configuration/apps/associate-app-config-api_config#operation/putConfig) method.
2. In `customizations` > `displayed_extended_attributes` >`product_detail`, specify an array of the extended attributes to be displayed.

For each individual attribute, you can configure:

- A unique name
- A label for the attribute, with translated versions for certain locales.

The `label` property must have an `en` translation. Other optional locales that NewStore supports are:
  - `de`
  - `es`
  - `fr`
  - `it`
  - `ja`
  - `ko`
  - `zh`

## Example configuration

See this example of an extended attribute configuration for a product in your business:

```json
{
   "attribute_name": "material",
   "label": {
      "en": "Material",
      "de": "Stoff"
   }
}
```

Once enabled, the `Product Details` screen in NewStore Associate App displays a table with up to 4 extended attributes. To view the remaining extended attributes, tap `Show more details`. For more information on using NewStore Associate App, see this [guide](/v1/docs/using-newstore-associate-app#assoapp-instorepurchase).

> [!TIP]
> Note
> 
> The `Show more details` button is only displayed when the table has more than 4 rows.

**Related topics**

- [Configuring extended attributes in NewStore Associate App](/v1/docs/configuring-extended-attributes-in-newstore-associate-app#config-aa-editable-extended-attributes)
- [Using NewStore Associate App](/v1/docs/using-newstore-associate-app#assoapp-instorepurchase)
- [Importing data](/v1/docs/importing-data#integ-importdata)
- [Tutorial: Importing products](/v1/docs/tutorial-importing-products#tuto-import-product)

<style> p[data-block-id] {font-size:1rem;} ul li p[data-block-id] {margin-bottom: 0;} ul[data-type="taskList"] li div p[data-block-id] {margin-bottom: 0;} ol li p[data-block-id] {margin-bottom: 0;} table tbody th p[data-block-id] { margin-bottom: 0;} blockquote p[data-block-id] {margin-bottom: 0 !important;} &nbsp;p[data-block-id]:empty::after {content: "\00A0";} </style>
