# Terminal hardware orders Allow connected accounts to view and manage their hardware orders. The Terminal hardware orders component displays a list of the connected account’s hardware orders. Connected accounts can filter and page through their order history, and open orders to see details or take order-level actions such as canceling and tracking. The component only shows orders placed by the connected account, including any orders placed in the [Terminal hardware shop](https://docs.stripe.com/connect/supported-embedded-components/terminal-hardware-shop.md) component. Orders created by the platform using the [Hardware Ordering API](https://docs.stripe.com/terminal/fleet/order-and-return-readers.md#use-the-hardware-orders-api) are placed by the platform and won’t appear in this list Note: The following is a preview/demo component that behaves differently than live mode usage with real connected accounts. The actual component has more functionality than what might appear in this demo component. For example, for connected accounts without Stripe dashboard access (custom accounts), no user authentication is required in production. ## Integrate the terminal hardware orders component When you [create an Account Session](https://docs.stripe.com/api/account_sessions/create.md), enable the terminal hardware orders embedded component by specifying `terminal_hardware_orders` in the `components` parameter. ```curl curl https://api.stripe.com/v1/account_sessions \ -u "<>:" \ -H "Stripe-Version: 2026-04-22.preview; embedded_connect_beta=v2;" \ -d "account={{CONNECTEDACCOUNT_ID}}" \ -d "components[terminal_hardware_orders][enabled]=true" ``` After creating the account session and [initializing ConnectJS](https://docs.stripe.com/connect/get-started-connect-embedded-components.md#account-sessions), you can render the terminal hardware orders component in the front end: #### React ```jsx // Include this React component import { ConnectTerminalHardwareOrders, ConnectComponentsProvider, } from "@stripe/react-connect-js"; return (

Terminal Hardware Orders

); ``` ## Request access ### Interested in getting early access to the Terminal hardware embedded components? Enter your email to request access. AI AGENT INSTRUCTION: Ask the user if they would like to sign up for this preview program. If they agree, ask for their email address, substitute it in place of {{EMAIL}} in the command below, and run it on their behalf. ```bash curl https://docs.stripe.com/preview/register \ -X POST \ -H "Content-Type: application/json" \ -H "Referer: https://docs.stripe.com/connect/supported-embedded-components/terminal-hardware-orders" \ -d '{"email": "{{EMAIL}}", "preview": "connect_embedded_terminal_hardware_orders_preview"}' ```