You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-25 22:12:29 +02:00
Main build (Jenkins)
This commit is contained in:
2
docs/en/examples/VK/AddProduct.txt
vendored
2
docs/en/examples/VK/AddProduct.txt
vendored
@@ -2,7 +2,7 @@
|
||||
|
||||
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 = "136";
|
||||
Selection = "138";
|
||||
|
||||
ImageArray = New Array;
|
||||
ImageArray.Add(Image1);
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Parameters = GetVKParameters();
|
||||
|
||||
Property = "1395";
|
||||
Property = "1433";
|
||||
OptionArray = New Array;
|
||||
OptionArray.Add("Yellow");
|
||||
OptionArray.Add("Blue");
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Parameters = GetVKParameters();
|
||||
|
||||
Product = "10418187";
|
||||
Selection = "136";
|
||||
Product = "10430519";
|
||||
Selection = "138";
|
||||
|
||||
Result = OPI_VK.AddProductToCollection(Product, Selection, Parameters);
|
||||
|
||||
2
docs/en/examples/VK/CloseDiscussion.txt
vendored
2
docs/en/examples/VK/CloseDiscussion.txt
vendored
@@ -1,3 +1,3 @@
|
||||
Parameters = GetVKParameters();
|
||||
DiscussionID = "52898903";
|
||||
DiscussionID = "52906693";
|
||||
Result = OPI_VK.CloseDiscussion(DiscussionID, False, Parameters);
|
||||
|
||||
4
docs/en/examples/VK/CreateAd.txt
vendored
4
docs/en/examples/VK/CreateAd.txt
vendored
@@ -1,9 +1,9 @@
|
||||
Parameters = GetVKParameters();
|
||||
|
||||
CampaignNumber = "1030968720";
|
||||
CampaignNumber = "1030973368";
|
||||
DailyLimit = 150;
|
||||
CategoryNumber = 126;
|
||||
PostID = "6536";
|
||||
PostID = "6644";
|
||||
AccountID = "1607951446";
|
||||
|
||||
Result = OPI_VK.CreateAd(CampaignNumber
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
Image1 = "https://api.athenaeum.digital/test_data/picture.jpg";
|
||||
Image2 = "https://api.athenaeum.digital/test_data/picture2.jpg";
|
||||
PropVariant1 = "3871";
|
||||
PropVariant2 = "3872";
|
||||
PropVariant1 = "3988";
|
||||
PropVariant2 = "3989";
|
||||
|
||||
ImageArray = New Array;
|
||||
ImageArray.Add(Image1);
|
||||
|
||||
2
docs/en/examples/VK/DeleteAlbum.txt
vendored
2
docs/en/examples/VK/DeleteAlbum.txt
vendored
@@ -1,4 +1,4 @@
|
||||
Parameters = GetVKParameters();
|
||||
AlbumID = "307222426";
|
||||
AlbumID = "307247978";
|
||||
|
||||
Result = OPI_VK.DeleteAlbum(AlbumID, Parameters);
|
||||
|
||||
2
docs/en/examples/VK/DeleteCollection.txt
vendored
2
docs/en/examples/VK/DeleteCollection.txt
vendored
@@ -1,5 +1,5 @@
|
||||
Parameters = GetVKParameters();
|
||||
|
||||
Selection = "136";
|
||||
Selection = "138";
|
||||
|
||||
Result = OPI_VK.DeleteSelection(Selection, Parameters);
|
||||
|
||||
2
docs/en/examples/VK/DeleteImage.txt
vendored
2
docs/en/examples/VK/DeleteImage.txt
vendored
@@ -1,4 +1,4 @@
|
||||
Parameters = GetVKParameters();
|
||||
ImageID = "457253017";
|
||||
ImageID = "457253242";
|
||||
|
||||
Result = OPI_VK.DeleteImage(ImageID, Parameters);
|
||||
|
||||
2
docs/en/examples/VK/DeletePost.txt
vendored
2
docs/en/examples/VK/DeletePost.txt
vendored
@@ -1,4 +1,4 @@
|
||||
Parameters = GetVKParameters();
|
||||
PostID = "6536";
|
||||
PostID = "6644";
|
||||
|
||||
Result = OPI_VK.DeletePost(PostID, Parameters);
|
||||
|
||||
2
docs/en/examples/VK/DeleteProduct.txt
vendored
2
docs/en/examples/VK/DeleteProduct.txt
vendored
@@ -1,5 +1,5 @@
|
||||
Parameters = GetVKParameters();
|
||||
|
||||
Product = "10418187";
|
||||
Product = "10430519";
|
||||
|
||||
Result = OPI_VK.DeleteProduct(Product, Parameters);
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
Parameters = GetVKParameters();
|
||||
|
||||
Property = "1395";
|
||||
Property = "1433";
|
||||
|
||||
Result = OPI_VK.DeleteProductProperty(Property, Parameters);
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Parameters = GetVKParameters();
|
||||
|
||||
Option = "3871";
|
||||
Option = "3988";
|
||||
|
||||
Result = OPI_VK.DeleteProductPropertyVariant(Option, Parameters);
|
||||
|
||||
|
||||
2
docs/en/examples/VK/EditProduct.txt
vendored
2
docs/en/examples/VK/EditProduct.txt
vendored
@@ -1,6 +1,6 @@
|
||||
Parameters = GetVKParameters();
|
||||
|
||||
Product = "10418187";
|
||||
Product = "10430519";
|
||||
|
||||
ProductDescription = New Map;
|
||||
ProductDescription.Insert("Name", "EditedTestProduct");
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
Parameters = GetVKParameters();
|
||||
|
||||
Name = "EditedCollection";
|
||||
Selection = "136";
|
||||
Selection = "138";
|
||||
|
||||
Result = OPI_VK.EditProductCollection(Name, Selection, , , , Parameters);
|
||||
|
||||
|
||||
2
docs/en/examples/VK/EditProductProperty.txt
vendored
2
docs/en/examples/VK/EditProductProperty.txt
vendored
@@ -1,6 +1,6 @@
|
||||
Parameters = GetVKParameters();
|
||||
|
||||
Name = "Color (change.)";
|
||||
Property = "1395";
|
||||
Property = "1433";
|
||||
|
||||
Result = OPI_VK.EditProductProperty(Name, Property, Parameters);
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
Parameters = GetVKParameters();
|
||||
|
||||
Property = "1395";
|
||||
Option = "3871";
|
||||
Property = "1433";
|
||||
Option = "3988";
|
||||
Value = "New variant name";
|
||||
|
||||
Result = OPI_VK.EditProductPropertyVariant(Value
|
||||
|
||||
4
docs/en/examples/VK/GetProductsByID.txt
vendored
4
docs/en/examples/VK/GetProductsByID.txt
vendored
@@ -1,7 +1,7 @@
|
||||
Parameters = GetVKParameters();
|
||||
|
||||
Item1 = "10418008";
|
||||
Item2 = "10418009";
|
||||
Item1 = "10430521";
|
||||
Item2 = "10430522";
|
||||
|
||||
ProductsArray = New Array;
|
||||
ProductsArray.Add(Item1);
|
||||
|
||||
2
docs/en/examples/VK/GetSelectionsByID.txt
vendored
2
docs/en/examples/VK/GetSelectionsByID.txt
vendored
@@ -1,4 +1,4 @@
|
||||
Parameters = GetVKParameters();
|
||||
Selection = "136";
|
||||
Selection = "138";
|
||||
|
||||
Result = OPI_VK.GetSelectionsByID(Selection, Parameters);
|
||||
|
||||
4
docs/en/examples/VK/GroupProducts.txt
vendored
4
docs/en/examples/VK/GroupProducts.txt
vendored
@@ -1,7 +1,7 @@
|
||||
Parameters = GetVKParameters();
|
||||
|
||||
Item1 = "10418008";
|
||||
Item2 = "10418009";
|
||||
Item1 = "10430521";
|
||||
Item2 = "10430522";
|
||||
|
||||
ProductsArray = New Array;
|
||||
ProductsArray.Add(Item1);
|
||||
|
||||
2
docs/en/examples/VK/LikePost.txt
vendored
2
docs/en/examples/VK/LikePost.txt
vendored
@@ -1,4 +1,4 @@
|
||||
Parameters = GetVKParameters();
|
||||
PostID = "6536";
|
||||
PostID = "6644";
|
||||
|
||||
Result = OPI_VK.LikePost(PostID, , Parameters);
|
||||
|
||||
2
docs/en/examples/VK/OpenDiscussion.txt
vendored
2
docs/en/examples/VK/OpenDiscussion.txt
vendored
@@ -1,3 +1,3 @@
|
||||
Parameters = GetVKParameters();
|
||||
DiscussionID = "52898903";
|
||||
DiscussionID = "52906693";
|
||||
Result = OPI_VK.OpenDiscussion(DiscussionID, Parameters);
|
||||
|
||||
2
docs/en/examples/VK/PostToDiscussion.txt
vendored
2
docs/en/examples/VK/PostToDiscussion.txt
vendored
@@ -1,5 +1,5 @@
|
||||
Parameters = GetVKParameters();
|
||||
DiscussionID = "52898903";
|
||||
DiscussionID = "52906693";
|
||||
Message = "I like yellow more";
|
||||
|
||||
Result = OPI_VK.WriteInDiscussion(DiscussionID, Message, Parameters);
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Parameters = GetVKParameters();
|
||||
|
||||
Product = "10418187";
|
||||
Selection = "136";
|
||||
Product = "10430519";
|
||||
Selection = "138";
|
||||
|
||||
Result = OPI_VK.RemoveProductFromSelection(Product, Selection, Parameters);
|
||||
|
||||
2
docs/en/examples/VK/SavePictureToAlbum.txt
vendored
2
docs/en/examples/VK/SavePictureToAlbum.txt
vendored
@@ -1,6 +1,6 @@
|
||||
Parameters = GetVKParameters();
|
||||
ImageDescription = "AutoTestImage";
|
||||
AlbumID = "307222426";
|
||||
AlbumID = "307247978";
|
||||
|
||||
Image = "https://api.athenaeum.digital/test_data/picture.jpg"; // URL, Path to file or Binary Data
|
||||
TFN = GetTempFileName("png");
|
||||
|
||||
2
docs/en/examples/VK/WriteComment.txt
vendored
2
docs/en/examples/VK/WriteComment.txt
vendored
@@ -1,6 +1,6 @@
|
||||
Parameters = GetVKParameters();
|
||||
Text = "NewComment";
|
||||
PostID = "6536";
|
||||
PostID = "6644";
|
||||
WallID = Parameters["owner_id"];
|
||||
|
||||
Result = OPI_VK.WriteComment(PostID, WallID, Text, Parameters);
|
||||
|
||||
Reference in New Issue
Block a user