2024-06-05 12:19:46 +02:00
|
|
|
---
|
|
|
|
sidebar_position: 5
|
|
|
|
---
|
|
|
|
|
|
|
|
# Add product property variant
|
|
|
|
Adds a variant for an existing property
|
|
|
|
|
|
|
|
|
2024-07-10 10:59:55 +02:00
|
|
|
|
2024-07-10 12:58:29 +02:00
|
|
|
`Function AddProductPropertyVariant(Val Value, Val Property, Val Parameters = "") Export`
|
2024-06-05 12:19:46 +02:00
|
|
|
|
2024-08-13 14:52:26 +02:00
|
|
|
| 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 |
|
2024-06-05 12:19:46 +02:00
|
|
|
|
2024-08-13 14:52:26 +02:00
|
|
|
|
|
|
|
Returns: Map Of KeyAndValue - Serialized JSON response from VK
|
2024-06-05 12:19:46 +02:00
|
|
|
|
2024-07-10 13:05:58 +02:00
|
|
|
<br/>
|
2024-07-10 10:59:55 +02:00
|
|
|
|
2024-07-10 12:58:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2024-06-05 12:19:46 +02:00
|
|
|
```bsl title="Code example"
|
2024-08-13 14:52:26 +02:00
|
|
|
Parameters = GetVKParameters();
|
|
|
|
|
|
|
|
Property = FunctionParameters["VK_PropID"];
|
|
|
|
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);
|
|
|
|
|
|
|
|
OPI_TestDataRetrieval.WriteLog(Result, "AddProductPropertyVariant", "VK");
|
|
|
|
|
|
|
|
FunctionParameters.Insert(ParameterName, VariantID);
|
|
|
|
EndDo;
|
2024-06-05 12:19:46 +02:00
|
|
|
```
|
2024-08-13 14:52:26 +02:00
|
|
|
|
2024-07-10 10:59:55 +02:00
|
|
|
|
2024-06-05 12:19:46 +02:00
|
|
|
|
|
|
|
```sh title="CLI command example"
|
2024-08-13 14:52:26 +02:00
|
|
|
|
|
|
|
oint vk AddProductPropertyVariant --value %value% --prop "648" --auth "GetVKParameters()"
|
2024-06-05 12:19:46 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
```json title="Result"
|
2024-07-10 13:11:17 +02:00
|
|
|
{
|
2024-08-13 14:52:26 +02:00
|
|
|
"response": {
|
|
|
|
"variant_id": 980
|
|
|
|
}
|
|
|
|
}
|
2024-06-05 12:19:46 +02:00
|
|
|
```
|