An event triggered when the Approval Request is displayed.
This event occurs when a player opens a Checkout Link Offer.
The time when the event occurred. Example: 1632345000
The unique identifier of the player involved in the event. Example: 12345
The game version. Example: 1.0.0
The session ID of the player’s current session. Example: 345397c6-d963-4aa4-a0ba-2aaca6c3ee05 Relevant only to Personalization API users, the player session metadata object received from the Personalization API. Example: { "metadata": "data" }
A list of offers related to the event.
Unique identifier for the offer. Example: offer123
Type of the offer. Optional Values: Bundle, SpecialOffer, PopUp Example: SpecialOffer
The subtype of the offer. Example: checkout_link
The name of the offer. Example: offer_name
A unique offer ID, automatically generated by Appcharge. Example: 67d6b74285b58f462adbebcb
The index of the offer in the list. Represents the day sequence of the daily bonus. Example: 1
 {
  "timestamp": 1632345000,
  "playerId": "12345",
  "appVersion": "1.0.0",
  "sessionId": "345397c6-d963-4aa4-a0ba-2aaca6c3ee05",
  "sessionMetadata": { 
    "metadata": "data" 
  },
  "offers": [
    {
      "publisherOfferId": "offer123",
      "offerType": "deep_link",
      "offerSubType": "checkout_link",
      "offerName": "offer_name",
      "offerId": "67d6b74285b58f462adbebcb",
      "offerIndex": 1
    }
  ]
}