> ## Documentation Index
> Fetch the complete documentation index at: https://docs.appcharge.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Shop Land

An event triggered when the player lands on the main web store page after login or when navigating directly to the web store.

**Event Data**

<ResponseField name="timestamp" type="number">
  The time when the event occurred. Example: `1632345000`
</ResponseField>

<ResponseField name="event" type="string">
  The type of player authentication event. In this case, shop\_land. Example: `shop_land`
</ResponseField>

<ResponseField name="platform" type="string">
  The device platform used by the player. Example: `mobile`
</ResponseField>

<ResponseField name="source" type="string">
  The interface through which the player accessed the login page. Supported values:

  * `browser app`: Mobile or desktop browser.
  * `webview`: An in-app webview.
  * `homescreen bookmark`: A saved home screen shortcut or bookmark.
</ResponseField>

<ResponseField name="countryCode2" type="string">
  The two-letter country code of the player. Example: `US`
</ResponseField>

<ResponseField name="sessionId" type="string">
  The [session ID](../introduction#session-id) of the player’s current session. Example: `345397c6-d963-4aa4-a0ba-2aaca6c3ee05`
</ResponseField>

<ResponseField name="playerId" type="string">
  The player's ID. Example: `player_001`
</ResponseField>

<ResponseField name="sessionMetadata" type="object">
  Relevant only to Personalization API users, the player session metadata object received from the Personalization API. Example: `{ "metadata": "data" }`
</ResponseField>

<ResponseField name="utmSource" type="string">
  Identifies the source of your traffic. Optional Values: google, facebook, instagram. Example: `google`
</ResponseField>

<ResponseField name="utmMedium" type="string">
  Specifies the medium through which the traffic arrived. Optional Values: cpc, email, social, referral. Example: `cpc`
</ResponseField>

<ResponseField name="utmCampaign" type="string">
  Identifies the marketing campaign associated with the traffic. Optional Values: spring\_sale, retargeting, black\_friday. Example: `spring_sale`
</ResponseField>

<ResponseField name="utmTerm" type="string">
  Paid search keyword or term that generated the traffic. Example: `buy+coins`
</ResponseField>

<ResponseField name="utmContent" type="string">
  A label that identifies which version of content a player clicked to reach the web store. Useful for A/B testing and analyzing performance of different ad or link variations within the same campaign. Example: `ad1`
</ResponseField>

<ResponseExample>
  ```json Event Payload theme={"system"}
  {
    "timestamp": 1632345000,
    "event": "shop_land",
    "platform": "mobile",
    "source": "webview",
    "countryCode2": "US",
    "sessionId": "345397c6-d963-4aa4-a0ba-2aaca6c3ee05",
    "playerId": "player_001",
    "sessionMetadata": { 
      "metadata": "data" 
    },
    "utmSource": "google",
    "utmMedium": "cpc",
    "utmCampaign": "spring_sale",
    "utmTerm": "buy+coins",
    "utmContent": "ad1"
  }
  ```
</ResponseExample>
