Skip to main content

Create product property

Creates a new property for use in products

Function CreateProductProperty(Val Name, Val Parameters = "") Export

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

Returns: Map Of KeyAndValue - Serialized JSON response from VK


Code example
    Parameters = GetVKParameters();

Name = "Color";

Result = OPI_VK.CreateProductProperty(Name, Parameters);
CLI command example
    
oint vk CreateProductProperty --title "Color" --auth "GetVKParameters()"

Result
{
"response": {
"property_id": 260
}
}