Stripe | Financial Infrastructure to Grow Your Revenue

Stripe | Financial Infrastructure to Grow Your Revenue

4466 articles

Capital promotional tile component


Private preview

Capital promotional tile component Private preview

Increase adoption for your Capital program by more prominently displaying offers.

The Capital promotional tile component displays available financing offers to your connected accounts. This guide describes how to embed a smaller tile version of the Capital promotion component as a white-labeled promotion in your platform’s website or app.

The promotional tile can help:

  • Increase visibility : Display financing options where connected accounts make business decisions, improving awareness and application rates.
  • Fill gaps : Provide visible, prequalified financing offers with exact amounts, addressing limitations of email-only marketing.
  • Reduce friction : Enable direct application access from your website or dashboard.
  • Drive adoption : Present timely offers with clear terms to motivate action.
  • Maintain branding : Customize the promotional tile to match your platform’s design.

Promotional tile in Furever, the Stripe embedded components demo

Before you begin

  • Embedded components are available to display to connected accounts in the United States (US), United Kingdom (GB), France (FR), Germany (DE), and Australia (AU).
  • Before you activate Capital, you must enable automatic offers and submit your integration to Stripe for review .
  • When you render the component , it links out to Stripe content by default. You can replace the link for Privacy policy and How Capital for platforms works with your equivalent documentation.

Install Capital embedded components

Install a beta version of the Stripe SDKs to create account sessions for private preview components:

  • Ruby >= 15. 5. 0-beta. 1
  • Python >= 12. 5. 0b1
  • PHP >= 17. 6. 0-beta. 1
  • Node >= 18. 5. 0-beta. 1
  • .NET >= 48. 5. 0-beta. 1
  • Java >= 29. 5. 0-beta. 1
  • Go >= 82. 5. 0-beta. 1

Use the beta version of the Stripe’s client-side libraries to render private preview components:

Install the library:

npm install --save @stripe/connect-js@preview

If you’re using React in your application:

npm install --save @stripe/react-connect-js@preview

Set up Connect.js

If you don’t already use Stripe embedded components in your application, initialize Connect.js before you integrate the promotional tile component.

Create an Account Session

In your create an Account Session request, specify capital_financing_promotion in the components parameter.

Command Line

Select a language

cURL

Ruby

Python

PHP

Java

Node.js

Go

.NET

No results

Render the component

Render the Capital promotional tile component in the front end.

The setLayout method controls whether to display the full embedded component or the smaller banner, which greatly reduces the vertical size of the component to stack it along with other content on your website or your platform’s dashboard.

promo-tile.js

Select a language

JavaScript

React

No results

// Include this element in your HTML
const capitalFinancingPromotion = stripeConnectInstance.create('capital-financing-promotion');
capitalFinancingPromotion.setLayout('banner');
container.appendChild(capitalFinancingPromotion);

Customize the component's appearance

Customize embedded components to align the component’s fonts, colors, and UI style with your platform’s branding.

Set the display state

Add the promotional tile on your main home page or the sidebar of that page yields the highest marketing impact. Position the tile where connected accounts frequently navigate to maximize visibility and engagement. Additionally, evaluate how your connected accounts interact with your platform to find the places that best apply to your use case (such as high-visibility or decision-making pages).

If multiple users have access to a connected account, consider only showing the promotional tile to a logged-in owner or admin of the account (who can review and apply for a financing offer).

The component adapts its display based on the connected account’s financing status:

  • With active offer : Shows full offer details with a Start application button.
  • Active financing in progress : The component doesn’t render (returns null).
  • No active financing : Displays generic eligibility information about the lending program.

Additionally, you can hide the promotional tile component entirely if there’s no eligible financing offer. To accomplish this you can use the available onEligibleFinancingOfferLoaded callback:

promo-tile.js

Select a language

JavaScript

React

No results

// Include this element in your HTML
const capitalFinancingPromotion = stripeConnectInstance.create('capital-financing-promotion');
capitalFinancingPromotion.setLayout('banner');
container.appendChild(capitalFinancingPromotion);
capitalFinancingPromotion.setOnEligibleFinancingOfferLoaded(({productType}) => {
 switch (productType) {
 case 'none':
 capitalFinancingPromotion.parentElement.style.display = 'none';
 break;
 case 'standard':
 case 'refill':
 capitalFinancingPromotion.parentElement.style.display = 'block';
 break;
 }
});

Handle load errors

After rendering the component, review how to handle load errors to make sure your integration can gracefully manage cases when components fail to load.

Submit the component for review

To use any of the Capital components in live mode, Stripe and our financial partners must review and approve all customer-facing content that references Stripe Capital:

  1. Create a test offer in a sandbox , and set the offer status to delivered . Use this test offer to preview the application component in your platform’s website or dashboard.
  2. Capture a preview of the sandbox offer and how the embedded component displays in your platform’s UI (such as screenshots or a recorded video).
  3. Submit the preview to Stripe . After approval, Stripe enables you to use the component in live mode.

Optional Additional embedded components

See also

Last verified 2026-09-24

Is this helpful?