Search Fields

The Search API supports field filtering. This is an optional parameter to define which fields should be returned from the API.
Fields that are not defined, will not be returned. The value should be a comma separated list. Wildcards are supported.

Note: This parameter must be provided through the header

Example"Fields": "brand, design_type"
{
    "itemId": "123",
    "id": "123",
    "design_type": "Plain",
    "brand": "BRU"
}

Wildcard support

The feature has the option to use wildcards. This means you don't need to specify exactly which fields you want to retrieve.
This gives you the opportunity to add an asterisk to a value and retrieve mulitple fields with the same part.

Note: When you add only an asterisk "*" or left the header parameter empty, you'll retrieve all the fields. 

Example:  "Fields": "*Name"
{
        "itemId": "123",
        "id": "123",
        "productName": "Product x",
        "collectionName": "Collection x",
        "designName": "Design x"
  }