mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-16 11:38:11 +02:00
845 B
845 B
sidebar_position |
---|
2 |
Create product property
Creates a new property for use in products
Function CreateProductProperty(Val Name, Val Parameters = "") Export
Parameter | CLI option | Type | Description |
---|---|---|---|
Name | --title | String | Property name |
Parameters | --auth | Structure Of String | Authorization JSON or path to .json |
Returns: Map Of KeyAndValue - Serialized JSON response from VK
Parameters = GetVKParameters();
Name = "Color";
Result = OPI_VK.CreateProductProperty(Name, Parameters);
oint vk CreateProductProperty --title "Color" --auth "GetVKParameters()"
{
"response": {
"property_id": 260
}
}