Docs
Concepts
Log Collection

ADCIO is a machine-learning powered system, and it requires large amount of data to train the model. Therefore the log collection is crucial and must be done precisely, without exception. Use the ADCIO SDK or ADCIO Log Collection API.

Glossary

TermDefinition
ADCIO AdminAdmin platform used by Stores and Sellers on ADCIO

Supported platforms

PlatformWebAndroidiOSFlutter
TutorialsπŸ“– (opens in a new tab)πŸ“– (opens in a new tab)πŸ“– (opens in a new tab)πŸ“– (opens in a new tab)
Please refer to the usage instructions forΒ log collection API (opens in a new tab)Β if you are not using the SDK.

Example code

JavaScript
const adcioInstance = new Adcio({ clientId: "..." });
 
adcioInstance.onPurchase({
  ...suggestion.logOptions,
  amount: 23910, // actual purchase price
});
Dart
...
final option = AdcioLogOption.fromMap(suggestion.logOptions);
AdcioAnalytics.onPurchase(
  option,
  amount: 23910, // actual purchase price
);
Kotlin
...
AdcioAnalytics.onPurchase(
  option = logOption
  amount: 23910 // actual purchase price
)

Id and IdOnStore

For example, ADCIO admin has Ids like productId, categoryId, sellerId. These Ids are constructed by concatenating storeId and Ids in the store system (aka IdOnStore) to guarantee global uniqueness.

Assume ADCIO admin has abc-123-def-456 as storeId and 123 as productIdOnStore. Then productId in ADCIO admin becomes abc-123-def-456:123

Impression

We comply with the MRC (Media Rating Council) Viewability Guideline for the aggregation of Impression logs.

A display ad is counted as viewable when at least 50% of its area is visible on the screen for at least 1 second.For large display ads of 242,500 pixels or more, the ad is counted as viewable when at least 30% of it's area is visible for at least 1 second.

Click / Wishlist / Add To Cart

These actions take place immediately after the recommendation/advertisement or within a few minutes.

Page View

The user's access to the page is recorded. If the page is a product list page, the identifier of the category is collected together. If the page is a product details page, the identifier of the product is collected together.

Purchase

It may take some time for the purchase to take place after the recommendation/advertisement.

We acknowledge that the purchase is the result of the recommendation/advertisement when it is made within 24 hours of the recommendation/advertisement.