Stripe | Financial Infrastructure to Grow Your Revenue

Stripe | Financial Infrastructure to Grow Your Revenue

5282 articles

Embedded Stripe Apps integration guide


Private preview

Embedded Stripe Apps integration guide Private preview

Use embedded components for Stripe Apps to allow your customers to manage payments data in third party applications.

Customers expect their payments data to be readily available in the tools they’re already using to complete their business workflows. Embedded components for Apps allow your customers to use third party applications in Stripe.

With embedded components for Apps, you can embed integrations built for Stripe into your platform, and allow your customers to use their preferred third party applications without leaving Stripe. Use prebuilt UI components that sync data directly with applications such as QuickBooks and Xero.

Integrate with Connect embedded components

Set up Connect.js to enable the ability to add connected account dashboard functionality to your website.

Embedded Stripe Apps uses private preview components that requires using preview versions of Stripe SDKs. Read more about private preview components.

Select the app to integrate

Stripe supports the following app integrations.

App integrationApp ID
QuickBooks Sync by Acodeicom.example.acodeistripeapp
Xero sync by Xerocom.xero.stripeapp
Mailchimpmailchimp

Set up app installation

Render the app install embedded component for your selected app. App installation grants permission for the third party app to access your users’ Stripe data, creating a connection between your platform, Stripe, and the third party app. The component has two states: uninstalled and installed. Listen to install event triggers to build your custom UX flow or make updates in your own back end.

When creating an Account Session, enable app installation and rendering by specifying app_install, and app_viewport in the components parameter. You must enable the app you want to render by specifying the features parameter under allowed_apps.

Command Line

Select a language

cURL

Ruby

Python

PHP

Java

Node.js

Go

.NET

No results

After creating the account session and initialising ConnectJS, you can render the App install component in the front end:

app-install.js

Select a language

JavaScript

React

No results

const appInstall = stripeConnectInstance.create('app-install');
appInstall.setApp('{{APP_ID}}');
container.appendChild(appInstall);

This embedded component supports the following parameters:

MethodTypeDescription
setAppstringSets the ID of the App your connected account can install. See the list of available apps.

You can configure custom behaviour based on the current or updated state of an install.

index.html

Select a language

HTML and JavaScript

React

No results

<div id="app-install-container"></div>

index.js

Select a language

HTML and JavaScript

React

No results

// Do something when install state fetched on render
const handleAppInstallFetched = (response) => {
 console.log(`Install state fetched for app ${response.appId} to ${response.state}`);
};

// Do something when install state changes
const handleAppInstallChanged = (response) => {
 console.log(`Install state changed for app ${response.appId} to ${response.state}`);
};


const container = document.getElementById('app-install-container');
const appInstall = stripeConnectInstance.create('app-install');
appInstall.setApp('{{APP_ID}}');
appInstall.setOnAppInstallStateFetched(handleAppInstallFetched);
appInstall.setOnAppInstallStateChanged(handleAppInstallChanged);
container.appendChild(appInstall);
MethodDescriptionVariables
setOnAppInstallStateFetchedAllows users to specify custom behaviour in a callback function on install fetch.response.appId: The app installed response.state: The state of the install the related setting | the related setting
setOnAppInstallStateChangedAllows users to specify custom behaviour in a callback function when the install state has changed.response.appId: The app installed response.state: The state of the install the related setting | the related setting

Set up app settings

Render the app viewport embedded component for your selected app to enable core app functionality, including connection to the app’s software account with OAuth, onboarding, settings, and configuration for the service and synchronisation states of transactions. Pass the user_id (business represented on your platform) as an optional HTML attribute that third party apps can use to build a dynamic URL that redirects back to your user dashboard after OAuth.

app-viewport.js

Select a language

JavaScript

React

No results

const appViewport = stripeConnectInstance.create('app-viewport');
appViewport.setApp('{{APP_ID}}');
appViewport.setAppData({userId: '{{PLATFORM_USER_ID}}'});
container.appendChild(appViewport);

This embedded component supports the following parameters:

MethodTypeDescription
setAppstringSets the ID of the App your connected account can render. See available apps in the Embedded Stripe Apps integration guide.
setAppDataRecord<String, String>Sets data pertaining to your platform consumed by the App.

Customise for Connect destination on behalf of (OBO)

To ensure that your selected app properly processes transaction data, you must update the destination charge on the connected account by using the standardised data schema. It’s crucial that your platform sends at least a Customer object (specifically the customer ID) with each charge event.

This requirement is important because the charge.updated event might be sent multiple times for a single transaction. However, the third-party app only reads and processes events that include a customer ID. Always include the customer ID in the payload to confirm that the app processes the corresponding transaction. You have three scenarios that require you to update your destination charge:

  • One-off payment complete
  • Recurring payment complete
  • Payment refunded
Field or key nameFormat (standard CSV rules apply)DescriptionRequired
charges.customerString (ID)Stripe Customer ID (belonging to the connected account) attached to a destination Charge object. Transactions don’t sync to apps (such as Xero and QBO) if this field isn’t present.Required
customer.nameStringCustomer’s full name
customer.emailStringCustomer’s email address
customer.address.<>String (multi-field)Customer’s physical address (can be used for both billing and shipping)
charges.metadata.[refund_amount]String (cents integer)Mirroring charges.amount_refunded in base currency sub-units (‘350’ = 3.50 USD)Required by Quickbooks Online sync by Acodei
charges.metadata.[refund_reason]stringReason for the refund
charges.metadata.[currency_converted]true | false | nullSet to true if currency has been converted, for example, if the presentment currency differs from the settlement currencyRequired by Quickbooks Online sync by Acodei if using fees_names metadata
customer.metadata.[platform_customer_ID]StringCustomer ID as recorded in the platform’s system*
charges.metadata.[platform_product_ID]String, CSV multiple productsProduct IDs as recorded in the platform’s system
charges.metadata.[platform_product_name]String, CSV multiple productsProduct name as recorded in the platform’s system
charges.metadata.[platform_product_quantity]String, CSV multiple productsQuantity of each product corresponding to the ID and name array
charges.metadata.[platform_product_value]Integer, CSV multiple productsThe individual product value (price or cost) corresponding to the Product ID and name. Base currency sub-units (‘350’ = 3.50 USD)
charges.metadata.[platform_product_tag]String, CSV multiple productsProduct tag or category corresponding to the ID and name array
charges.metadata.[platform_order_ID]StringOrder ID as recorded in the platform’s system
charges.metadata.[platform_charge_ID]StringCharge or transaction ID as recorded in the platform’s system and visible to the business
charges.metadata.[fees_names]String, CSV multiple feesName of fees the user is paying (expense) of any kind related to the transaction that aren’t captured in the Charge (for example, credit processing fee or platform fee) If this field is populated, the charges.application_fee is ignored.
charges.metadata.[fees_values]Integer, CSV multiple feesValues of fees the user is paying (expense) of any kind related to the transaction that aren’t captured in the charge – for example, the credit processing fee or platform fee. Base currency sub-units (‘350’ = 350 USD)
charges.metadata.[revenues_names]String, CSV multiple revenuesFees (revenues) collected by the business related to this transaction (charge) that aren’t captured in the charge (for example, a convenience fee or tips)
charges.metadata.[revenues_values]Integer, CSV multiple revenuesValues of fees (revenues) collected by the business related to this transaction (charge). Base currency sub-units (‘350’ = 3.50 USD)
charges.metadata.[total_tax]IntegerTotal taxes associated with this transaction (charge). Base currency sub-units (‘350’ = 3.50 USD)
charges.metadata.[tax_names]String, CSV multiple taxesTax type names applied on a transaction allowing for multiple tax types, using an array (for example ‘GST’ or ‘sales’)
charges.metadata.[tax_rates]Float, CSV multiples taxesTax rates applied on a transaction corresponding to specified tax types as a percentage (for example, ‘3’ or ‘1.5’ corresponds to 3% GST and 1.5% sales tax)
charges.metadata.[tax_values]string, CSV multiple taxesTax values applied on a transaction corresponding to specified tax types. Base currency sub-units (‘350’ = 3.50 USD)

QuickBooks Sync by Acodei also requires charge updates with refund amounts written to metadata.

The following code snippet example traverses to the target destination charge and shows how to update per schema.

  1. Trace from the Transaction to the destination charge
const paymentOnPlatform = await StripeClient.paymentIntents.retrieve(
 "pi_3N6JL7LirQdaQn8E1Lpn7Dui",
);

const latestCharge = await StripeClient.charges.retrieve(
 paymentOnPlatform.latest_charge as string,
);

const transfer = await StripeClient.transfers.retrieve(
 latestCharge.transfer as string,
);


const payment = await StripeClient.charges.retrieve(
 transfer.destination_payment as string,
 undefined,
 {
 stripeAccount: transfer.destination as string,
 },
 );
  1. Create a customer and then update the charge with the relevant customer ID and metadata. The customer must belong to the connected account and not the platform for the data to pass, and apps to synchronise.
const customer = await StripeClient.customers.create(
 {
 email: `jenny.rosen@example.com`,
 name: "Jenny Rosen",
 address: {
 city: "Brothers",
 state: "Oregon",
 country: "USA",
 line1: "27 Fredrick Ave",
 postal_code: "97712"
 },
 metadata: {
 platform_customer_ID: "K-123456"
 },
 },
 {
 stripeAccount: accountId,
 },
 );
 const payment = await StripeClient.charges.update(
 id,
 {
 customer: customer.id,
 metadata: {
 product_name: "Creative writing course for PMs",
 platform_product_ID: "P-123456",
 platform_order_ID: "O-123456"
 },
 },
 {
 stripeAccount: accountId,
 },
 );

Direct charges

The embedded integrations accesses all payment, customer, and product data stored with Stripe. You can pass optional platform-specific data to the App using the below metadata schema.

Field or key nameFormat (standard CSV rules apply)Description
customer.metadata.[platform_customer_ID]stringCustomer ID as recorded in the platform’s system
payment.metadata.[platform_product_ID]string, CSV multiple productsProduct IDs as recorded in the platform’s system, related to this transaction (if different from the Stripe product ID)
payment.metadata.[platform_product_name]string, CSV multiple productsProduct or service names as recorded in the platforms’ system, related to this transaction (if different from the Stripe product name)
payment.metadata.[platform_product_value]string, CSV multiple productsThe individual product value (price or cost) corresponding to the ID and name array (if different from the Stripe product value)
payment.metadata.[platform_order_ID]stringOrder ID as recorded in the platform’s system, related to this transaction (charge)
payment.metadata.[platform_charge_ID]stringCharge or transaction ID as recorded on the platform and visible to the user (if different from the Stripe payment ID)

Interested in the preview of embedded components for Apps?

Enter your email to request access.

Last verified 2026-09-25

Is this helpful?