Prerequisites
- The user has completed onboarding, has the
paypalcapability enabled, and has a verified phone number. - Your app has integrated the Payment Widget SDK.
- Your API client has the required scopes:
core.transactions:create— to create quotes and transactionswidgets.payment.sessions:create— to create widget sessions
Walkthrough
The diagram shows a first-time authorization. For an already-authorized account, skip the sign-in — the widget only collects device data and reuses the stored authorization.Select deposit method
The Payment Widget’s Select for Deposit flow presents the available payment methods, letting the user select PayPal when it’s available. It performs selection only: it does not create the quote or the transaction.Create a widget session
Call Create widget session to start theselect-for-deposit flow.
response.session to your frontend to initialize the widget.
Set up the widget
For native apps using a WebView, you’ll need a bridge for events as outlined in Installation & setup.
Handle the complete event
Thecomplete event fires after the user selects PayPal. The event payload includes the selected PayPal external account — if it has already been previously authorized.
Handle cancellations
Handle errors
Theerror event fires for critical unrecoverable errors.
Select destination account
deposits can target any account. If the selected account is not in the account’s currency, the amount will be converted at settlement using Uphold’s prevailing rate. Make sure the destination asset has the necessary features enabled.Find an existing account
Call List accounts to retrieve the user’s accounts and let them pick the one they want to fund.Create a new account
If the user has no accounts, create one with Create account before proceeding.Create a quote
Call Create quote with PayPal as the origin and the user’s account as the destination. There are two ways to specify the PayPal origin:-
apmshortcut — usetype: "apm"withmethod: "paypal". This is always accepted, whether or not the user already has a linked PayPal account. -
external-accountreference — if the user already has a linked PayPal account, you can reference it directly withtype: "external-account"and itsid(from List external accounts):
apm shortcut.
requirements array. If it contains authorize:paypal, the user must authorize PayPal before the transaction can be created.
Present the order summary
Before creating the transaction, display an order summary of the quote — the amount, fees, and the origin and destination — so the user can review it. Here’s an example:
Authorize and create the transaction
After the user confirms the PayPal deposit quote, hand off to the Payment Widget Authorize flow. It creates the transaction, runs the PayPal authorization, and polls until a terminal status is reached — so the same flow works for both new and already-authorized accounts.Create an authorize session
Call Create widget session withflow: "authorize", the quoteId and with the requirements array containing authorize:paypal.
Set up the widget
Initialize the widget with the session. The widget interacts with PayPal, creates the transaction, and polls until a terminal status is reached. For a new account the user signs in to PayPal to authorize; for an already-authorized account they do not sign in again — the widget only collects device data and reuses the stored authorization.For native apps using a WebView, you’ll need a bridge for events as outlined in Installation & setup.
Handle the complete event
transaction.statusDetails.reason:
Handle cancellations
Thecancel event fires when the user navigates back without completing authorization.
Handle errors
Theerror event fires for critical unrecoverable errors.
event.detail.error.code:
Monitor for settlement
transactions remain inprocessing while the payment settles. Monitor until the transaction reaches a terminal state.
- Webhook events (recommended):
- core.transaction.created —
status: processing→ transaction created, pending settlement - core.transaction.status-changed —
status: completed→ funds settled;status: failed→ irrecoverable error
- core.transaction.created —
- Polling (fallback): Get transaction
Sample transaction
In a successful PayPal deposit, the origin is the external account representing the user’s PayPal account and the destination is the user’saccount.
Notify the user
After the transaction completes, display the transaction details to the user so they can confirm the deposit succeeded. It must include the PayPal logo and the PayPal account email used. Here’s an example:
You now support PayPal deposits via the Payment Widget.