Add product
Adds a new product to the community's catalog
Function AddProduct(Val ProductDescription, Val Selection = "", Val Parameters = "") Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
ProductDescription | --product | Map Of KeyAndValue | ✔ | JSON description of the product or path |
Selection | --sel | String | ✖ | Selection ID for placing the product, if needed |
Parameters | --auth | Structure Of String | ✖ | Authorization JSON or path to .json |
Returns: Map Of KeyAndValue - serialized JSON response from VK
1C:Enterprise/OneScript code example
Parameters = GetVKParameters();
Image1 = "https://api.athenaeum.digital/test_data/picture.jpg"; // URL, Binary or Path to file
Image2 = "https://api.athenaeum.digital/test_data/picture2.jpg"; // URL, Binary or Path to file
Selection = "137";
ImageArray = New Array;
ImageArray.Add(Image1);
ImageArray.Add(Image2);
ProductDescription = New Map();
ProductDescription.Insert("Name" , "TestProduct");
ProductDescription.Insert("Description" , "Product description");
ProductDescription.Insert("Category" , "20173");
ProductDescription.Insert("Price" , 1);
ProductDescription.Insert("OldPrice" , 15);
ProductDescription.Insert("MainPhoto" , Image1);
ProductDescription.Insert("URL" , "https://github.com/Bayselonarrend/OpenIntegrations");
ProductDescription.Insert("AdditionalPhotos" , ImageArray);
ProductDescription.Insert("MainInGroup" , True);
ProductDescription.Insert("Width" , 20);
ProductDescription.Insert("Height" , 30);
ProductDescription.Insert("Depth" , 40);
ProductDescription.Insert("Weight" , 100);
ProductDescription.Insert("SKU" , "12345");
ProductDescription.Insert("AvailableBalance" , "10");
Result = OPI_VK.AddProduct(ProductDescription, Selection, Parameters);
- Bash
- CMD/Bat
# JSON data can also be passed as a path to a .json file
oint vk AddProduct \
--product "{'Name':'Test product (another)','Description':'Product description','Category':'20173','Price':1,'OldPrice':15,'MainPhoto':'https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/picture.jpg','URL':'https://github.com/Bayselonarrend/OpenIntegrations','AdditionalPhotos':['https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/picture.jpg','https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/picture2.jpg'],'MainInGroup':true,'GroupNumber':null,'Width':20,'Height':30,'Depth':40,'Weight':100,'SKU':12345,'AvailableBalance':'10','PropertyValues':3007}" \
--auth "{'access_token':'***','owner_id':'-218861756','app_id':'51694790','group_id':'218861756'}"
:: JSON data can also be passed as a path to a .json file
oint vk AddProduct ^
--product "{'Name':'Test product (another)','Description':'Product description','Category':'20173','Price':1,'OldPrice':15,'MainPhoto':'https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/picture.jpg','URL':'https://github.com/Bayselonarrend/OpenIntegrations','AdditionalPhotos':['https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/picture.jpg','https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/picture2.jpg'],'MainInGroup':true,'GroupNumber':null,'Width':20,'Height':30,'Depth':40,'Weight':100,'SKU':12345,'AvailableBalance':'10','PropertyValues':3007}" ^
--auth "{'access_token':'***','owner_id':'-218861756','app_id':'51694790','group_id':'218861756'}"
Result
{
"response": {
"market_item_id": 9709208
}
}