Accéder directement au contenu
Créez un compte
ou
connecter-vous
Logo de la documentation Stripe
/
Demander à l'assistant IA
Créez un compte
Connectez-vous
Démarrer
Paiements
Automatisation des opérations financières
Plateformes et places de marché
Gestion de fonds
Outils de développement
Démarrer
Paiements
Automatisation des opérations financières
Démarrer
Paiements
Automatisation des opérations financières
Plateformes et places de marché
Gestion de fonds
Aperçu
Gestion des versions
Journal des modifications
Mettre à niveau votre version de l'API
Actualiser votre version du SDK
Outils de développement
SDK
API
Tests
Workbench
Destinations d'événements
Workflows
CLI Stripe
Shell Stripe
Dashboard des développeurs
Boîte à outils des agents
Alertes d'intégrité de StripeIntégrer des LLMStripe pour Visual Studio CodeChargements de fichiers
Sécurité
Sécurité
Extensions Stripe
Stripe Apps
    Présentation
    Démarrer
    Créer une application
    Fonctionnement de Stripe Apps
    Exemples d'application
    Créer une application
    Enregistrer des clés secrètes
    Méthodes d'authentification de l'API
    Flux d'autorisation
    Logique côté serveur
    Écouter les événements
    Gérer différents modes
    Activer la prise en charge de l'environnement de test
    Page des paramètres d'application
    Concevoir une interface utilisateur
    Inscription des utilisateurs
    Distribuer votre application
    Options de distribution
    Charger votre application
    Versions
    Tester votre application
    Publier votre application
    Faire la promotion de votre application
    Ajouter des liens profonds
    Créer des liens d'installation
    Assigner des rôles dans les extensions d'interface utilisateur
    Actions post-installation
    Analyses de l'application
    Composants intégrés pour les applications
    Intégrer des applications tierces conçues pour Stripe
      Intégration de logiciels de comptabilité
      Intégrations marketing
    Migrer vers Stripe Apps
    Migrer ou développer une extension
    Migrer un plugin vers Stripe Apps ou Stripe Connect
    Référence
    Manifeste de l'application
    Interface de ligne de commande
    SDK d'extension
    Autorisations
    Fenêtres d'affichage
    Modèles de conception
    Composants
Connecteurs Stripe
Partenaires
Partner ecosystem
Certification des partenaires
AccueilOutils de développementStripe Apps

Remarque

Cette page n'est pas encore disponible dans cette langue. Nous faisons tout notre possible pour proposer notre documentation dans davantage de langues et nous vous fournirons la version traduite dès qu'elle sera disponible.

Embedded Stripe Apps integration guideVersion bêta privée

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

Copier la page

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)
Cette page vous a-t-elle été utile ?
OuiNon
Besoin d'aide ? Contactez le service Support.
Rejoignez notre programme d'accès anticipé.
Consultez notre log des modifications.
Des questions ? Contactez l'équipe commerciale.
LLM ? Lire llms.txt.
Propulsé par Markdoc