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

# Order tracking

> Attribute checkout to a live shopping session with reeview_lsid.

When a shopper watches a live show, Videowise sets the `reeview_lsid` cookie (30 days). The order tracking pixel reads that cookie at checkout and sends it as `lsId`, so the order is attributed to the live session.

You do **not** install a second pixel for live shopping. Use the same storefront pixel as shoppable videos. This page covers what is specific to live shows.

## How attribution works

1. The shopper opens a live show — channel page, [`videowiseLaunchLive`](/live-shopping/stream-rendering), or a `vwLsId` link.
2. Videowise writes `reeview_lsid` with the live stream ID. See [Cookies](/cookies).
3. On order confirmation, the pixel includes `lsId` in the tracking request.

The pixel snippets already send `lsId`. Shopify, Magento, SFCC, and custom/GTM installs all read `reeview_lsid`.

On React Native, persist and send the same ID with [`getStoredData`](/sdk/get-stored-data) (`lsId`) and [`trackingPixel`](/sdk/tracking-pixel).

## Install the pixel

Follow the platform guide in [Order tracking pixel](/pixel/overview). Install once per storefront.

<CardGroup cols={2}>
  <Card title="Shopify" icon="shopify" href="/pixel/shopify">
    Customer events pixel. Sends `lsId` from `reeview_lsid`.
  </Card>

  <Card title="Magento" icon="magento" href="/pixel/magento">
    Included on the default thank-you page.
  </Card>

  <Card title="Salesforce Commerce Cloud" icon="cloud" href="/pixel/sfcc">
    Included on the default order confirmation page.
  </Card>

  <Card title="Other / GTM" icon="code" href="/pixel/custom">
    Custom snippet. Passes `lsId` on the order payload.
  </Card>
</CardGroup>

## Related

* [Live shopping overview](/live-shopping/overview)
* [Launch a live stream](/live-shopping/stream-rendering)
* [Shoppable videos order tracking](/shoppable-videos/order-tracking)
* [Order tracking pixel](/pixel/overview) — platform install
* [Cookies](/cookies)
* [Tracking pixel (SDK)](/sdk/tracking-pixel)
