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

# Record a storefront visitor ping



## OpenAPI

````yaml /bundles/storefront-api-swagger.json post /bundles/cp/api/ping-visitor
openapi: 3.0.1
info:
  description: ''
  title: Storefront APIs
  version: 0.0.1
servers:
  - url: https://bundles-admin.appstle.com
security: []
tags:
  - description: Fetch build-a-box configuration and generate bundle discounts.
    name: Build-a-Box
  - description: Storefront-facing Bundles widget and visitor activity endpoints.
    name: Storefront
  - description: >-
      Storefront product and collection data, proxied through the Shopify
      Storefront API for build-a-box and bundle widgets.
    name: Product Catalog
paths:
  /bundles/cp/api/ping-visitor:
    post:
      tags:
        - Storefront
      summary: Record a storefront visitor ping
      operationId: pingVisitor
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VisitorAnalyticsRequest'
      responses:
        '200':
          description: OK
components:
  schemas:
    VisitorAnalyticsRequest:
      properties:
        bundleId:
          format: int64
          type: integer
        sessionToken:
          type: string
      type: object

````