> ## 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.

# Web Store Login Canceled

An event triggered when the player closes or leaves the web store login process before completing it.

**Event Data**

<ResponseField name="eventName" type="string">
  Event name: `webstore.login.canceled`.
</ResponseField>

<ResponseField name="eventId" type="string">
  Event ID. Use this ID to deduplicate re-delivered events.
</ResponseField>

<ResponseField name="timestamp" type="number">
  Event timestamp in [Epoch time](https://www.epoch101.com/), represented in milliseconds. Example: `1754307361396`.
</ResponseField>

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

<ResponseField name="requestId" type="string">
  ID assigned by Appcharge to each request sent to the publisher. Helps the publisher identify and debug failed requests.
</ResponseField>

<ResponseField name="result" type="string">
  Event result. Supported values: `success`, `failed`.
</ResponseField>

<ResponseField name="reason" type="string">
  Reason for the event result. Example: `invalid_credentials`.
</ResponseField>

<ResponseField name="attributes" type="map<any,any>">
  A key-value map used to label events for tracking personas or tests. Example: `{ "persona":"non_payer", "blackFridayTest":"Base_group" }`
</ResponseField>

<ResponseField name="utm" type="object">
  UTM data.

  <Expandable title="properties">
    <ResponseField name="utmSource" type="string">
      Source of the traffic. This is where the player came from before reaching the store. Example: `Google`.
    </ResponseField>

    <ResponseField name="utmMedium" type="string">
      Marketing channel used to bring in the traffic. Example: `email`.
    </ResponseField>

    <ResponseField name="utmCampaign" type="string">
      Identifies the marketing campaign associated with the traffic. Example: `black_friday`.
    </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: `summer_sale_ad1`
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="login" type="object">
  Information about the login.

  <Expandable title="properties">
    <ResponseField name="method" type="string">
      Player login method. Example: `Facebook`.
    </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>
  </Expandable>
</ResponseField>

<ResponseField name="device" type="object">
  Information about the player's device.

  <Expandable title="properties">
    <ResponseField name="platform" type="string">
      Device platform. Example: `iOS`.
    </ResponseField>

    <ResponseField name="deviceModel" type="string">
      Device model. Example: `iPhone 16 Pro`.
    </ResponseField>

    <ResponseField name="osType" type="string">
      Operating system type. Example: `Android`.
    </ResponseField>

    <ResponseField name="osVersion" type="string">
      Operating system version.
    </ResponseField>

    <ResponseField name="browserType" type="string">
      Browser type. Example: `Google Chrome`.
    </ResponseField>

    <ResponseField name="browserVersion" type="string">
      Browser version.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="geolocation" type="object">
  Information about the player's geolocation.

  <Expandable title="properties">
    <ResponseField name="countryCode2" type="enum">
      Two-letter country code in [ISO-3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) format. Example: `US`
    </ResponseField>

    <ResponseField name="region" type="string">
      Region or state.
    </ResponseField>

    <ResponseField name="ipAddress" type="string">
      IP address in [IPv4](https://en.wikipedia.org/wiki/IPv4) format. Example: `80.178.249.122`.
    </ResponseField>

    <ResponseField name="zipCode" type="string">
      Zip code.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json Event Payload theme={"system"}
  {
    "eventName": "webstore.login.canceled",
    "eventId": "3f5bffbc-369e-4599-8c4d-abfe0ae0ef96",
    "timestamp": 1754307361396,
    "sessionId": "345397c6-d963-4aa4-a0ba-2aaca6c3ee05",
    "requestId": "23539478-c744-566a-c78c-c4cc7763ff62",
    "result": "success",
    "reason": "invalid_credentials",
    "attributes": {
      "persona": "non_payer",
      "blackFridayTest": "Base_group"
    },
    "utm": {
      "utmSource": "google",
      "utmMedium": "cpc",
      "utmCampaign": "spring_sale",
      "utmTerm": "buy+coins",
      "utmContent": "ad1"
    },
    "login": {
      "method": "Facebook",
      "source": "webview"
    },
    "device": {
      "platform": "iOS",
      "deviceModel": "iPhone 16 Pro",
      "osType": "Apple",
      "osVersion": "18",
      "browserType": "Google Chrome",
      "browserVersion": "138"
    },
    "geolocation": {
      "countryCode2": "US",
      "region": "Florida",
      "ipAddress": "192.168.1.1",
      "zipCode": "34997"
    }
  }
  ```
</ResponseExample>
