Skip to main content
By the end of this guide the Payment Widget will be running in your app, mounted to a container, and emitting events you can react to.

Before you start

You’ll need:
  • Access to Widgets API to create widget sessions. Manage your access in Enterprise Portal.
  • A backend that can call the Widgets API to create sessions on behalf of your users.
  • A frontend — a web app, or a native app with a WebView — to embed the Widget.
The Widget runs from one of two hosts depending on environment:

Choose an integration approach

We recommend integrating without the SDK for native apps — it’s simpler to set up. For web-only integrations, the SDK is a solid default. There are two ways to embed the Widget:
  • Web SDK — Install @uphold/enterprise-payment-widget-web-sdk for a better developer experience — typed events and a more streamlined integration on web. For native apps, the SDK must be bundled into the WebView’s HTML page, and if your flow needs Apple Pay or Google Pay, that page must be served from a real HTTPS origin rather than bundled locally.
  • JavaScript — Listen for the Widget’s messages over the iframe or WebView and respond to them directly. This is also the simpler option for native apps: there’s no SDK to bundle into the WebView’s HTML page, so payment methods like Apple Pay and Google Pay work without any extra setup.
Both approaches use the same backend step — creating a session via the Widgets API — and emit the same four lifecycle outcomes (ready, complete, cancel, error).

Shared setup

These two steps are identical whichever approach you choose above — do them once, then jump to the matching section below.

1. Create a session on your backend

The Payment Widget runs against a session — a short-lived, server-side authorization scoped to one flow and one user. Create it server-side using your OAuth credentials.
To create a session, you must have the Payment Widget scope.
Never create session directly from the client. Your client secret must not leave your backend.
Call Create session with the desired flow (select-for-deposit, select-for-withdrawal, or authorize) and the user the session is for:
The response wraps the session object:
Pass response.session to your frontend (e.g. as part of your page response or via your own API endpoint):
  • With the SDK, it’s the single session argument to the PaymentWidget constructor — see Setup Web SDK.
  • Without the SDK, session.url is what you load directly into your iframe or WebView, and the whole object is what you send back as init — see Setup with JavaScript.

2. Allow the Widget domain in your CSP

If your web app embeds the Widget in an iframe and enforces a Content Security Policy, allow the Widget host for your environment(s) under frame-src.
If your app does not use CSP, skip this step.

Setup with Web SDK

Install the SDK

Install the SDK in the frontend that will host the Widget — your web app, or the JS bundle loaded by your native WebView.

Initialize and mount the Widget

On the frontend, instantiate PaymentWidget with the session from Create a session on your backend, then mount it into a container element.
The container must have explicit CSS width and height — the iframe fills its bounds. Minimum recommended size is 400px × 600px.
For type inference on the complete event, pass the flow as a generic: new PaymentWidget<'select-for-deposit'>(session). See the SDK reference for full constructor details.

Handle Widget events

The Widget emits four events during its lifecycle. Wire up handlers before calling mountIframe.
The Widget does not unmount itself. You must call widget.unmount() from complete, cancel, and error handlers.
The shape of event.detail.value varies by flow. See Events in the SDK reference for the full type definitions.

Native apps with the SDK

Setup with JavaScript

Instead of installing the SDK, you can load the Widget’s session url directly — as an iframe you create yourself on web, or as your WebView’s top-level page on native — and speak its underlying message protocol. This approach is recommended for native apps as there is no need for bundling the SDK into the WebView’s HTML page and serving that page from a real HTTPS origin to avoid issues with Apple Pay/Google Pay.
The Shared setup steps still apply here — you just don’t install anything. Only how you load the Widget and exchange messages changes.

The message protocol

These are the message types the Widget speaks. The transport carrying them differs per platform — see the tabs below. From the Widget to your host: From your host to the Widget: The init payload spreads the session object from Create a session on your backend (url, token, flow) alongside an options object with the same shape as the SDK’s PaymentWidgetOptions — omit options or pass {} to use defaults.

Specifying the theme appearance

By default, the Widget matches the browser or OS prefers-color-scheme until it receives your init reply. To control the initial appearance yourself — and avoid a flash if it won’t match what you send in init — append a theme_appearance query parameter (dark or light) to session.url before loading it:
This works the same whether you load the result into a web iframe or as your native WebView’s top-level page.

Platform implementation

Mount the session url in an iframe you create yourself, and exchange messages over the standard window.postMessage API. Make sure the iframe’s allow attribute includes clipboard permissions (and payment permissions, for Apple Pay and Google Pay), and that its container has explicit CSS width and height (minimum recommended size is 400px × 600px).

Test in Sandbox

With your Sandbox credentials and the Sandbox Widget host configured, run through this checklist — it applies whichever approach you integrated with:
  • The Widget mounts and ready fires.
  • Selecting a payment method fires complete with the expected value for your flow — event.detail.value with the SDK, or the value payload of the complete message without it.
  • Closing or dismissing the Widget fires cancel.
  • If your app uses a CSP (see Shared setup), the browser console shows no violations (look for “Refused to frame”).
Once Sandbox is green, swap your OAuth credentials to Production. The Widget host is selected automatically by the session url returned from your backend — no client-side environment switching is needed.

Configuration reference

The most common SDK options. See the SDK reference for the full schema and all event types.
If you’re integrating without the SDK, these map directly to the options object you send in your init reply.

Troubleshooting

Widget not displaying Confirm the Widget host for your environment is in the frame-src directive of your CSP (see Shared setup). Open DevTools → Console and look for Refused to frame violations. Container is empty after mount The iframe fills its container — the container must have explicit CSS width and height. Minimum recommended size is 400px × 600px. Events not firing in native apps (with the SDK) Verify that:
  • JavaScript is enabled in the WebView.
  • The message bridge is registered before the HTML page loads.
  • Event handler names match the platform-specific bridge contract used in sendToNativeApp.
Events not firing (without the SDK) Verify that:
  • Your message-handler / listener name is exactly uphdPaymentWidget — the name the Widget checks for on both iOS and Android — and is registered before the WebView loads the session url.
  • You’re replying to load with init — the Widget won’t render anything until it receives it.
  • On web, you’re filtering incoming message events by origin (event.origin === sessionOrigin) — messages from other origins should be ignored, not treated as Widget events.
Widget never unmounts. The SDK does not auto-unmount, and neither does the Widget itself when integrating without it. Call widget.unmount() (SDK) or tear down your iframe/WebView (no SDK) from each terminal message (complete, cancel, error). Apple Pay option not shown to the user Confirm the device supports Apple Pay through the Payment Request API in case of a deposit or for the Disbursement Request API in case of a withdrawal and that the user has the required capabilities enabled. If you mounted the iframe yourself instead of using mountIframe(), confirm its allow attribute includes payment 'src' — without it, the Widget can’t detect Apple Pay support and hides the option. Also confirm your domain is registered with Apple Pay (see Apple Pay); an unverified domain makes Apple Pay silently unavailable. Apple Pay sheet doesn’t open when the button is clicked (authorize flow) This is usually the device, not the integration: Apple Pay requires the device to be able to authenticate the user at the moment of the click. For example, on a MacBook with the lid closed, Touch ID is unreachable and the sheet won’t open; the same applies if the device has no Touch ID/Face ID or passcode configured. Ask the user to check their device’s authentication method is available, then try again. Apple Pay sheet opens, then is immediately dismissed This is typically a merchant validation failure — check that your domain, and any ancestor frame domains, are registered with Apple Pay under Uphold’s merchant ID (see Apple Pay).

Next steps

  • Review the complete SDK Reference for all available methods and events.
  • Read our Developer Guides for step-by-step instructions on implementing specific payment methods with the Widget: