Staff Can Now View Customers’ Online Carts Directly in Shopify POS

Shopify POS v11.14 now lets authorized staff see an identified customer’s abandoned online cart at checkout. Learn who this impacts, how to enable the permission, and actionable steps to boost in‑store conversions.

Staff Can Now View Customers’ Online Carts Directly in Shopify POS
6 sections

Shopify’s latest POS update (v11.14) gives your in‑store team a new superpower: the ability to pull up an identified customer’s online cart right inside the POS interface. This means staff can spot abandoned items, answer product questions, and close the sale on the spot. Below we break down what changed, who needs to act, and how to get the most out of this feature.

What’s New?

In Shopify POS version 11.14, permitted store staff can now view the items a known customer has left in an online cart (abandoned checkout) when that customer checks in at a physical location. The view is limited to the cart contents—browsing history remains private.

Who’s Affected?

Merchants & store owners – gain a new tool to recover abandoned carts and increase foot‑traffic conversion rates.

POS staff – can now proactively offer assistance (size guidance, product details) based on the customer’s pending items.

Developers – while the feature is UI‑driven, you may need to adjust custom POS apps or permission scopes to respect the new “View abandoned checkouts” setting.

How to Enable the Feature

  • Ensure your store is running POS v11.14 or later.
  • In Shopify Admin, navigate to Settings > Users > Roles.
  • Select the POS role(s) you want to grant access to.
  • Under Customers, toggle on View abandoned checkouts.
  • Save the changes – the permission takes effect immediately for any staff logging into POS after the update.
  • If you manage permissions via the API, the relevant scope is write_customers. Below is a sample GraphQL mutation to add the permission to a staff role:

    graphql

    mutation roleUpdate($roleId: ID!, $permissions: [PermissionInput!]!) {

    roleUpdate(id: $roleId, input: { permissions: $permissions }) {

    role {

    id

    name

    permissions

    }

    userErrors { field message }

    }

    }

    # Example variables

    # {

    # "roleId": "gid://shopify/StaffRole/123456789",

    # "permissions": [{"name": "VIEW_ABANDONED_CHECKOUTS"}]

    # }

    What It Means for Developers

    Your custom POS extensions now have a clear contract: if the staff member’s role includes the new permission, the POS UI will surface the abandoned cart data. Ensure any private APIs you expose respect the same permission check, otherwise you could expose cart data to unauthorized users.

    For developers pulling abandoned checkout data programmatically, use the existing Checkout API. The only change is that the data can now be surfaced in‑store, so you might want to add a flag in your UI to indicate “online cart visible in POS”.

    Practical Tips for Merchants

    Identify customers early – encourage email sign‑ups at checkout so the POS can match them to an online cart.

    Train staff – teach them how to locate a customer’s cart in POS and how to use that insight to upsell or answer questions.

    Set location context – POS sessions must have a location selected; make sure each terminal is properly configured.

    Monitor conversion – track how many abandoned carts are completed in‑store after the feature rolls out to measure ROI.

    Conclusion & Next Steps

    The new “View abandoned checkouts” permission bridges the online‑offline gap, turning a missed checkout into a live sales opportunity. Enable the setting today, train your team, and watch your in‑store conversion rates climb. Have questions or need help adjusting custom POS apps? Reach out to our Shopify experts or drop a comment below—let’s get those carts closed!

    Tags
    Sources

    Related Articles

    Shopify Storefronts Now Support UCP 2026‑08‑25 – What Developers Need to Know
    Platform Updates

    Shopify Storefronts Now Support UCP 2026‑08‑25 – What Developers Need to Know

    Shopify’s storefronts now advertise support for the Universal Commerce Protocol version 2026‑08‑25, enabling seamless capability negotiation for platforms and agents. Learn what changed, who’s impacted, and the exact steps you should take.

    September 4, 20263 min
    Hydrogen Developer Preview Unleashed: Variant Links, Cart Refresh, and Local HTTPS Made Simple
    Platform Updates

    Hydrogen Developer Preview Unleashed: Variant Links, Cart Refresh, and Local HTTPS Made Simple

    Shopify’s Hydrogen preview adds variant‑specific links, automatic cart refresh, and one‑command local HTTPS certificates—essential upgrades for developers building custom storefronts. Learn what changed, who’s impacted, and how to implement them today.

    September 3, 20264 min
    Instant Connectivity Insight: New POS Home Status Icon
    Platform Updates

    Instant Connectivity Insight: New POS Home Status Icon

    Shopify POS now shows a real‑time connectivity icon right on the Home screen, letting staff confirm device readiness before checkout. Learn what changed, who it impacts, and how to make the most of this seamless update.

    September 1, 20264 min
    Unlock Faster POS Checkout: Scan and Search Variants Using Multiple Barcodes
    Platform Updates

    Unlock Faster POS Checkout: Scan and Search Variants Using Multiple Barcodes

    Shopify POS now lets staff find any product variant by scanning any of its associated barcodes, reducing manual look‑ups and streamlining checkout, receiving, and inventory tasks.

    September 1, 20263 min