1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-18 23:48:56 +02:00
OpenIntegrations/docs/en/md/VK/Product-properties-management/Add-product-property-variant.md

58 lines
1.1 KiB
Markdown
Raw Normal View History

---
sidebar_position: 5
---
# Add product property variant
Adds a variant for an existing property
2024-07-10 12:58:29 +02:00
`Function AddProductPropertyVariant(Val Value, Val Property, Val Parameters = "") Export`
| Parameter | CLI option | Type | Destination |
|-|-|-|-|
| 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 13:05:58 +02:00
<br/>
2024-07-10 12:58:29 +02:00
```bsl title="Code example"
2024-07-31 20:55:27 +02:00
Parameters = GetVKParameters();
2024-07-10 13:24:11 +02:00
2024-08-09 16:15:52 +02:00
Property = "648";
2024-07-31 20:55:27 +02: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 %prop% --auth %auth%
```
```json title="Result"
2024-07-10 13:11:17 +02:00
{
"response": {
"variant_id": 980
}
}
```