Skip to main content

Edit product property

Edits the existing product property

Function EditProductProperty(Val Name, Val Property, Val Parameters = "") Export

ParameterCLI optionTypeDescription
Name--titleStringNew name
Property--propString, NumberProperty ID
Parameters--authStructure Of StringAuthorization JSON or path to .json

Returns: Map Of KeyAndValue - Serialized JSON response from VK


Code example
    Parameters = GetVKParameters();

Name = "Color (change.)";
Property = "720";

Result = OPI_VK.EditProductProperty(Name, Property, Parameters);
CLI command example
    
oint vk EditProductProperty --title "Color (change.)" --prop "648" --auth "GetVKParameters()"

Result
{
"response": 1
}