Data Object: Property Group

Get Property Group List


{{ data.propertyGroup.list({}) }}

HTTP/1.1 200 OK
[
    {
         id: 1,
         title: "Platform",
         properties: [
             {
                 id: 2,
                 type: 1,
                 title: "Operation System",
                 productCount: 2,
                 values: [
	             {
	                 id: 2,
                         title: "iOS",
                         productCount: 1
	             },
                     {
                         id: 2,
                         title: "Android",
                         productCount: 1
	             }
                 ]
             }
         ]
     }
]

or

[]

Parameter Type Description
id int Property group identifier
title string Property group title
properties array Related properties list
property.id int Property identifier
property.type int Property type (1: Predefined, 2: Custom Value)
property.title string Property title
property.productCount int Related products count
property.values array Property values
property.value.id int Value identifier
property.value.title string Value title
property.value.productCount int Related products count