Weiter zum Inhalt
Konto erstellen
oder
anmelden
Das Logo der Stripe-Dokumentation
/
KI fragen
Konto erstellen
Anmelden
Jetzt starten
Zahlungen
Finanzautomatisierung
Plattformen und Marktplätze
Geldmanagement
Entwickler-Tools
Jetzt starten
Zahlungen
Finanzautomatisierung
Jetzt starten
Zahlungen
Finanzautomatisierung
Plattformen und Marktplätze
Geldmanagement
Übersicht
Versionierung
Änderungsprotokoll
Aktualisieren Sie Ihre API-Version
Ihre SDK-Version aktualisieren
Entwickler-Tools
SDKs
API
Tests
Workbench
Ereignisziele
Arbeitsabläufe
Stripe-CLI
Stripe Shell
Entwickler-Dashboard
Agent-Toolkit
Stripe-StatuswarnungenMit LLMs entwickelnStripe für Visual Studio CodeHochgeladene Dateien
Sicherheit
Sicherheit
Extend Stripe
Stripe-Apps
    Übersicht
    Jetzt starten
    Eine App erstellen
    Funktionsweise von Stripe-Apps
    Beispiel-Apps
    App erstellen
    Shop-Geheimnisse
    API-Authentifizierungsmethoden
    Autorisierungsabläufe
    Serverseitige Logik
    Ereignisse überwachen
    Umgang mit verschiedenen Modi
    Sandbox-Unterstützung aktivieren
    App-Einstellungsseite
    Erstellen Sie eine Nutzeroberfläche
    Onboarding
    Ihre App verbreiten
    Vertriebsmöglichkeiten
    App hochladen
    Versionen und Releases
    Ihre App testen
    Ihre App veröffentlichen
    Ihre App bewerben
    Deep-Links hinzufügen
    Installationslinks erstellen
    Rollen in Erweiterungen der Nutzeroberfläche zuweisen
    Aktionen nach der Installation
    App-Analytik
    Eingebettete Komponenten für Apps
    Stripe-Apps von Drittanbietern einbetten
      Buchhaltungsintegrationen
      Marketingintegrationen
    Umstellung auf Stripe Apps
    Migrieren oder Erweiterung erstellen
    Ein Plugin zu Stripe Apps oder Stripe Connect migrieren
    Verwendungszweck
    App-Manifest
    CLI
    Erweiterungs-SDK
    Berechtigungen
    Darstellungsfelder
    Entwurfsmuster
    Komponenten
Stripe Connectors
Partner
Partner-Ecosystem
Partner-Zertifizierung
StartseiteEntwickler-ToolsStripe Apps

Notiz

Bis jetzt ist diese Seite noch nicht in dieser Sprache verfügbar. Wir arbeiten aber verstärkt daran, unsere Dokumentation in weiteren Sprachen bereitzustellen, und werden die Übersetzung sofort anzeigen, sobald diese verfügbar ist.

Embedded Stripe Apps integration guidePrivate Vorschau

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

Seite kopieren

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
cURL
curl https://api.stripe.com/v1/account_sessions \ -u "
sk_test_BQokikJOvBiI2HlWgH4olfQ2
:"
\ -H "Stripe-Version: 2025-04-30.basil; embedded_connect_beta=v2;" \ -d account={{CONNECTED_ACCOUNT_ID}} \ -d "components[app_install][enabled]"=true \ -d "components[app_install][features][allowed_apps][]"=APP_ID \ -d "components[app_viewport][enabled]"=true \ -d "components[app_viewport][features][allowed_apps][]"=APP_ID

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

app-install.js
JavaScript
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 behavior based on the current or updated state of an install.

app-install.js
JavaScript
// index.html <div id="app-install-container"></div> // index.js // 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 behavior in a callback function on install fetch.
  • response.appId: The app installed
  • response.state: The state of the install INSTALLED | UNINSTALLED
setOnAppInstallStateChangedAllows users to specify custom behavior in a callback function when the install state has changed.
  • response.appId: The app installed
  • response.state: The state of the install INSTALLED | UNINSTALLED

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 synchronization 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
JavaScript
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.

Customize for Connect destination on behalf of (OBO)

Pass required and optional transaction data to your selected app by updating the destination charge on the connected account using the data standardized data schema below. You must pass a Customer object to the destination charge. You have three scenarios that require you to update your destination charge:

  • One-time 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 synchronize.
const customer = await StripeClient.customers.create( { email: `jenny.rosen@example.com`, name: "Jenny Rosen", address.city: "Brothers" Address.state: "Oregon" address.country: "USA" address.line1: "27 Fredrick Ave" address.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 than 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 than 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 than 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 than the Stripe payment ID)
War diese Seite hilfreich?
JaNein
Benötigen Sie Hilfe? Kontaktieren Sie den Kundensupport.
Nehmen Sie an unserem Programm für frühzeitigen Zugriff teil.
Schauen Sie sich unser Änderungsprotokoll an.
Fragen? Sales-Team kontaktieren.
LLM? Lesen Sie llms.txt.
Unterstützt von Markdoc