Skip to main content

Get property list

Gets the list of properties of group products

Function GetPropertyList(Val Parameters = "") Export

ParameterCLI optionTypeDescription
Parameters--authStructure Of StringAuthorization JSON or path to .json

Returns: Map Of KeyAndValue - Serialized JSON response from VK


Code example
    Parameters = GetVKParameters();
Result = OPI_VK.GetPropertyList(Parameters);
CLI command example
    
oint vk GetPropertyList --auth "GetVKParameters()"

Result
[
{
"variants": [
{
"title": "Yellow",
"id": 962
},
{
"title": "Blue",
"id": 963
},
{
"title": "Red",
"id": 964
}
],
"type": "text",
"title": "Color",
"id": 255
}
]