POS UI extensions
The UI Extensions library enables individuals to build extensions that use interface elements and behaviors that mirror the look and feel of the POS retail experience. These elements render natively, providing the performance and accessibility inherent to a native app. POS UI extensions are available for the smart grid.
Shopify constantly works on adding new features to POS UI extensions. You can visit the changelog to make sure you're using the latest version of POS UI extensions.
Anchor to overviewOverview
Extend the Shopify POS with UI Extensions.
Anchor to getting-startedGetting Started
Get started with POS UI Extensions with Shopify CLI.
Anchor to app-authenticationApp Authentication
POS UI extensions can also make authenticated calls to your app's backend. When you use fetch()
to make a request to your app's configured auth domain or any of its subdomains, an Authorization
header is automatically added with a Shopify OpenID Connect ID Token (formerly known as a Session Token). There's no need to manually manage ID tokens.
Relative URLs passed to fetch()
are resolved against your app's . This means if your app's backend is on the same domain as your
, you can make requests to it using
fetch('/path')
.
If you need to make requests to a different domain, you can use the method to retrieve the ID token and manually add it to your request headers.
Important: ID tokens are only returned for authenticated users who are permitted to use your app. When the authenticated user (the user that logged into Shopify POS with their email address) doesn't have the correct app permission enabled for your app, the token will be null. This is irrelevant of which POS Staff member is pinned in, as those are not authenticated users. For more information on configuring app permissions, see the Shopify app permissions documentation.
App Authentication is available as of POS version 10.6.0 for extensions targeting 2025-07
or later.
Make requests to your app's backend
Anchor to direct-api-accessDirect API access
You can make Shopify Admin API requests directly from your extension using the standard web fetch API!
Any fetch()
calls from your extension to Shopify's Admin GraphQL API are automatically authenticated by default. These calls are fast too, because Shopify handles requests directly.
Direct API requests use online access mode by default.
Direct API access is available as of POS version 10.6.0 for extensions targeting 2025-07
or later.
Be sure to declare all required access scopes in your app's TOML file. For local development, access scopes are only registered or updated when the app is deployed and installed on your test store.