Alternative Outcomes
Learn how to log the appropriate user interaction for in-app offers and banners.
When logging user interactions, it's important to select the most appropriate outcome type to accurately capture user behavior. The SDK provides generic outcomes for immediate user decisions, as well as additional outcomes for more detailed interactions, such as banner interactions or ads.
If your flow has just 2 potential outcomes, we strongly recommend using simply .positive
and .negative
outcomes, to avoid extra complexities. However, if your flow has more than 2 potential outcomes, the following outcomes can be used for further distinction:
.positive
: A generic positive outcome, typically used when the user makes an immediate decision (e.g., responding to a full-screen prompt)..positiveInteracted
: User interacted with the banner and started the purchase flow, or read more about the offer..positiveConverted
: User successfully completed the intended action (e.g., purchase)..positiveAdTapped
: User tapped an advertisement or promotional element.
.negative
: A generic negative outcome, typically used when the user makes an immediate decision (e.g. dismissing a full-screen prompt)..negativeNotInteracted
: User did not engage with the banner in any way..negativeDismissed
: User explicitly dismissed the banner (e.g. using a close button).
See practical examples for these alternative outcomes in Multivariate Monetization and Inline Banners.
The skipped
outcome
skipped
outcomeA skipped outcome is neither positive or negative. It's designed to indicate actions that either ended up not showing the offer at all, or one that invalidated the flow. Examples:
Your context's shouldUpsell is
true
, but there is custom logic in your app that prevents the offer from being shown, such as a cooldown mechanism.You present a paywall that has a "Restore Purchases" button. This action is neither negative, nor really positive, as there was no real "conversion" at that time, so we recommend logging the
skipped
outcome alongside a custom outcome metadata with key used_restore_purchase_button and valuetrue
.
Last updated
Was this helpful?