LiSA Social Commerce
Developers
Developers
  • Developers
  • Guides
    • Integration Guide
      • Web Integration
      • App Integration
        • Android
          • Communication
          • Storage
          • File Downloads
          • Theming
        • iOS
          • Communication
          • Storage
          • File Downloads
          • Theming
        • React Native
          • Communication
          • Storage
          • File Downloads
          • Theming
        • Picture in Picture
      • Entrypoints
        • Query Parameter (v1)
    • Player Communication
      • Message API Reference
        • App
          • App — Heartbeat
          • App — Message Acknowledge
          • App — Message Error
          • App — Listen
        • CTA
          • CTA — Link in Comments
          • CTA — Sponsor Badge
        • Cart — View Cart
        • Comments — Join
        • Media
          • Media — Complete
          • Media — Pause
          • Media — Progress
          • Media — Resume
        • Media Item
          • Media Item — Emoji
          • Media Item — Impression
        • Player
          • Player — Dismiss
          • Player — Native Picture-in-Picture (PiP)
          • Player — Pass Visual Viewport
          • Player — Request Visual Viewport
          • Player — UI Transition
        • Products
          • Products — Add to Cart
          • Products — Add to Wishlist
          • Products — Click
          • Products — Close Product List
          • Products — Emoji
          • Products — Emoji State Update
          • Products — Impression
          • Products — Open Product List
        • Stickers
          • Stickers — Activate
          • Stickers — Click
          • Stickers — Expire
          • Stickers — Impression
          • Stickers — Publish
          • Stickers — Unlock
          • Stickers — Unpublish
          • Stickers — Update
          • Stickers — Voucher Claim
        • Visitor — Pass User Context
        • Shared Legacy Message Properties
    • Products
      • Product Update Notification API
  • Widgets
    • Content Hub
    • Quick Start Guide
    • Appearance
      • Markup
      • Responsive design
    • Configuration options
      • Autoplay
      • Channel
      • Client
      • Data
      • Debug
      • Host node
      • Layout
      • Language
      • On
      • Player
      • Query string
      • Quick view
      • Sections
      • Store
      • Template
    • API reference
      • Library API reference
      • Player API reference
      • Quick View API reference
    • Customisations
      • Template
      • Bring your own template
      • Type definitions
    • Examples
    • Type definitions
      • Asset
      • Product
      • Other
    • Promo Widget
      • Quick Start Guide
      • Configuration options
        • Autoplay
        • Channel
        • Countdown (deprecated)
        • Enabled
        • Image modifier
        • Lead time
        • Live (deprecated)
        • Position
        • Replay (deprecated)
        • Show ID
        • URL
  • Media Player Introduction
    • Picture-in-Picture Mode
  • Analytics
  • REST API
    • Authentication
    • Rate limits
    • Response status and error codes
    • API Documentation
Powered by GitBook
On this page
  1. Guides
  2. Integration Guide
  3. Entrypoints

Query Parameter (v1)

PreviousEntrypointsNextPlayer Communication

Last updated 3 months ago

The parameters outlined on this page are applicable exclusively to LiSA Player version 1.

Name
Description

replay_time

The replay_time parameter specifies the starting point for a show recording. By providing a numeric value, you can determine the exact time, in seconds, at which the playback should begin.

Accepted Value:

  • Any non-negative numeric value representing the desired start time in seconds. (e.g., 0 for the beginning of the recording, 60 for one minute into the recording, etc.)

ui_close_icon

The ui_close_icon parameter specifies space reservation in the player's header for an external UI control, such as a close button. This ensures that external UI elements do not overlap with the player's built-in controls.

Value Pattern: (left|right)(:width)?(:height)?

  • left or right: Specifies the side of the viewport where the space is reserved.

  • :width (optional): The width of the reserved space, specified as a valid CSS length (e.g., 32px, 2em). If omitted, the default width is 32px.

  • :height (optional): The height of the reserved space, specified as a valid CSS length. If omitted, the default height matches the width.

Default Behavior:

  • If only the side (left or right) is provided, a default space of 32x32px is reserved.

  • If one additional value is provided, it applies to both width and height.

  • If both width and height are provided, they are applied independently.

Example Usage:

Default size on the right — Reserves 32x32px in the top-right corner

Custom size on the right — Reserves 42x42px in the top-right corner

Custom width and height on the left — Reserves 50px width and 40px height in the top-left corner.

url_params

The url_params parameter allows you to append custom query parameters to URLs exposed by the LiSA Player, such as those used for social sharing or add-to-calendar options. This enables you to include additional data or tracking parameters in a structured and URL-safe manner.

Usage Guidelines:

  • Provide the query parameters in URL-encoded form.

  • Use standard query string syntax: key1=value1&key2=value2.

Example Usage:

To append utm_source and utm_campaign parameters:

To append a custom parameter:

This parameter allows you to extend the functionality of URLs for tracking or customization, ensuring seamless integration with your workflows and analytics tools.

ui_close_icon=right
ui_close_icon=right:42px
ui_close_icon=left:50px:40px
url_params=utm_source%3Dsocial%26utm_campaign%3Devent_launch
url_params=ref_id%3D12345