Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Info

All of the cart content must be resent when the user adds or removes a product from their shopping cart.

Warning

If you offer different product variations (such as size, color, material, etc) than your integration will slightly be different, please follow the guidelines on the Product Variant page.Kullanıcı bir ürünü bir alışveriş sepetine eklediğinde veya ürününü alışveriş sepetinden kaldırdığında, tüm sepet içeriği yeniden gönderilmelidir.


Warning

Boyut, renk, malzeme, vb. farklı ürün varyasyonları sunuyorsanız, entegrasyonunuz biraz farklı olacaktır, lütfen Varyant bazlı ürün entegrasyonu ve site implementasyonu sayfasındaki yönergeleri izleyin



Bir kullanıcı mobil uygulamanızda sepete ürün eklediğinde veya kaldırdığında aşağıdaki yöntemi kullanın:

Code Block
languageapplescript
titleObjective-C
NSMutableDictionary *properties = [[NSMutableDictionary alloc] init];
[properties setObject:@"Basket ID" forKey:@"OM.pbid"];
[properties setObject:@"Product1 Code;Product2 Code" forKey:@"OM.pb"];
[properties setObject:@"Product1 Quantity;Product2 Quantity" forKey:@"OM.pu"];
[properties setObject:@"Product1 Price*Product1 Quantity;Product2 Price*Product2 Quantity" forKey:@"OM.ppr"];
[properties setObject:@"memberID/userID" forKey:@"OM.exVisitorID"];
[properties setObject:@"Token ID to use for push messages" forKey:@"OM.sys.TokenID"];
[properties setObject:@"App ID to use for push messages" forKey:@"OM.sys.AppID"];
[[Visilabs callAPI] customEvent:@"Cart" withProperties:properties];

...

Code Block
languageapplescript
titleSwift
var properties = [String:String]()
properties["OM.pbid"] ="Basket ID"
properties["OM.pb"] = "Product1 Code;Product2 Code"
properties["OM.pu"] = "Product1 Quantity;Product2 Quantity"
properties["OM.ppr"] = "Product1 Price*Product1 Quantity;Product2 Price*Product2 Quantity"
properties["OM.exVisitorID"] = "memberID/userID"
properties["OM.sys.TokenID"] = "Token ID to use for push messages"
properties["OM.sys.AppID"] = "App ID to use for push messages"
Visilabs.callAPI().customEvent("Cart", withProperties: NSMutableDictionary(dictionary: properties))




Info

TokenID and AppID parameters are optional ve AppID parametreleri opsiyoneldir.


Note

Do not forget to use a universaID/customerID as the userID which you also share with other parties such as your ESP. If you are using a GSM number or an email address instead of a userID please send that info as the userID. Make sure that you share the same ID with all other parties.

Note
Do not use thousands separator when sending numbers. Wrong: 123.456,78 Correct: 123456,78

...

İnternet Servis Sağlayıcı (ESP) gibi üçüncü partilerle da paylaştığınız kullanıcı kimliği olarak bir evrenselID/müşteriID'si (universaID /customerID) kullanmayı unutmayın. Bir kullanıcı adı yerine bir GSM numarası veya e-posta adresi kullanıyorsanız lütfen bu bilgileri kullanıcı kimliği (user ID) olarak gönderin. Aynı kimliği (user ID) üçüncü partilerin hepsi ile paylaştığınızdan emin olun.


Note

Lütfen numaraları gönderirken binler basamağı ayracını kullanmayınız.

Yanlış: 123.456,78 Doğru: 123456,78


Note

Toplam gelir değeri, satın alınan öğelerin sayısının tek bir öğe fiyatı ile çarpımı olan OM.ppr parametresine iletilmesi gerekir.




Ana Başlık: iOS - SDK