1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-02-03 13:22:19 +02:00
OpenIntegrations/docs/en/md/VK/Product-properties-management/Add-product-property-variant.md

58 lines
1.2 KiB
Markdown
Raw Normal View History

---
sidebar_position: 5
---
# Add product property variant
Adds a variant for an existing property
2024-07-10 13:58:29 +03:00
`Function AddProductPropertyVariant(Val Value, Val Property, Val Parameters = "") Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
| Value | --value | String | Property value |
| Property | --prop | String, Number | Property ID where the variant is added |
| Parameters | --auth | Structure Of String | Authorization JSON or path to .json |
Returns: Map Of KeyAndValue - Serialized JSON response from VK
2024-07-10 14:05:58 +03:00
<br/>
2024-07-10 13:58:29 +03:00
```bsl title="Code example"
2024-08-13 16:47:32 +03:00
Parameters = GetVKParameters();
2024-09-10 13:48:11 +03:00
Property = "720";
2024-08-13 16:47:32 +03:00
OptionArray = New Array;
OptionArray.Add("Yellow");
OptionArray.Add("Blue");
OptionArray.Add("Red");
For Each Value In OptionArray Do
Result = OPI_VK.AddProductPropertyVariant(Value, Property, Parameters);
FunctionParameters.Insert(ParameterName, VariantID);
EndDo;
```
```sh title="CLI command example"
oint vk AddProductPropertyVariant --value %value% --prop "648" --auth "GetVKParameters()"
```
```json title="Result"
2024-08-14 09:06:31 +03:00
{
"response": {
"variant_id": 980
}
}
```