Stripe | Financial Infrastructure to Grow Your Revenue

Stripe | Financial Infrastructure to Grow Your Revenue

4466 articles

Terminal hardware orders


Private preview

Terminal hardware orders Private preview

Allow connected accounts to view and manage their hardware orders.

The Terminal hardware orders component displays a connected account’s hardware order history and gives the account access to hardware order management actions.

Request access

Interested in getting early access to the Terminal hardware embedded components?

Enter your email to request access.

Connected accounts can use the component to:

  • Filter and page through hardware orders.

  • Select an order to review its items, payment, shipping, and tracking details.

  • Track a shipment when tracking information is available.

  • Start or review an eligible return or warranty claim.

Understand which orders appear

The component only shows orders placed by the connected account. This includes orders placed in the Terminal hardware shop component.

Orders that your platform places using the Hardware Ordering API belong to the platform and don’t appear in the connected account’s order history.

Integrate the terminal hardware orders component

When you create an Account Session, enable the Terminal hardware orders embedded component by specifying terminal_hardware_orders in the components parameter.

Command Line

Select a language

cURL

Ruby

Python

PHP

Java

Node.js

Go

.NET

No results

After creating the Account Session and initializing Connect.js, render the Terminal hardware orders component in your front end:

terminalHardwareOrdersPage.jsx

Select a language

React

HTML + JavaScript

No results

// Include this React component
import {
 ConnectTerminalHardwareOrders,
 ConnectComponentsProvider,
} from "@stripe/react-connect-js";

return (
 <ConnectComponentsProvider connectInstance={stripeConnectInstance}>
 <div>
 <h2>Terminal Hardware Orders</h2>
 <ConnectTerminalHardwareOrders />
 </div>
 </ConnectComponentsProvider>
);
Last verified 2026-09-24

Is this helpful?