Skip to main content

Edit product property variant

Edits the value of an existing product property variant

Function EditProductPropertyVariant(Val Value, Val Property, Val Option, Val Parameters = "") Export

ParameterCLI optionTypeDescription
Value--valueStringNew property value
Property--propString, NumberProperty ID
Option--optionString, NumberVariant ID
Parameters--authStructure Of StringAuthorization JSON or path to .json

Returns: Map Of KeyAndValue - Serialized JSON response from VK


Code example
    Parameters = GetVKParameters();

Property = "720";
Option = "2239";
Value = "New variant name";

Result = OPI_VK.EditProductPropertyVariant(Value
, Property
, Option
, Parameters);
CLI command example
    
oint vk EditProductPropertyVariant --value %value% --prop "648" --option "2054" --auth "GetVKParameters()"

Result
{
"response": 1
}