Store Interaction Events

View insights into player behavior within the store, such as viewing available offers and interacting with loaded offers.

offers_shown
offers_shown
timestamp
String

The time when the event occurred.

Example 1632345000

playerId
String

The unique identifier of the player involved in the event.

Example 12345

appVersion
String

The game version.

Example 1.0.0

sessionMetadata
Object

Relevant only to PIS users, the player session metadata object received from the Player Info Sync Webhook.

Example { "metadata": "data" }

offers
Array

A list of offers related to the event. Each offer includes:

Offer Details
publisherOfferId
String

Unique identifier for the offer.

Example offer123

offerType
String

Type of the offer.

Optional Values: Bundle, SpecialOffer, PopUp
Example SpecialOffer

offerIndex
Number

The index of the offer in the list. Represents the day sequence of the daily bonus.

Example 1

Example Payload

Here is an example of what the payload might look like:

{
    "timestamp": 1632345000,
    "playerId": "12345",
    "appVersion": "1.0.0",
    "sessionMetadata": { "metadata": "data" },
    "offers": [
        {
            "publisherOfferId": "offer123",
            "offerType": "SpecialOffer",
            "offerIndex": 1
        }
    ]
}
offers_loaded
offers_loaded
timestamp
String

The time when the event occurred.

Example 1632345000

playerId
String

The unique identifier of the player involved in the event.

Example 12345

appVersion
String

The game version.

Example 1.0.0

sessionMetadata
Object

Relevant only to PIS users, the player session metadata object received from the Player Info Sync Webhook.

Example { "metadata": "data" }

offers
Array

A list of offers related to the event. Each offer includes:

Offer Details
publisherOfferId
String

Unique identifier for the offer.

Example offer123

offerType
String

Type of the offer.

Optional Values: Bundle, SpecialOffer, PopUp
Example SpecialOffer

offerIndex
Number

The index of the offer in the list. Represents the day sequence of the daily bonus.

Example 1

Example Payload

Here is an example of what the payload might look like:

{
    "timestamp": 1632345000,
    "playerId": "12345",
    "appVersion": "1.0.0",
    "sessionMetadata": { "metadata": "data" },
    "offers": [
        {
            "publisherOfferId": "offer123",
            "offerType": "SpecialOffer",
            "offerIndex": 1
        }
    ]
}