Skip to content

Search is only available in production builds. Try building and previewing the site to test it out locally.

SellerAssistedBuyingActivity container

The SellerAssistedBuyingActivity container displays a read-only table of administrator actions recorded during seller-assisted buying sessions. The table shows three columns: action, date, and details. Customers can review what an administrator did on their behalf but cannot modify or delete any records.

This container is part of the seller-assisted buying feature. For the end-to-end flow and Admin setup, see Seller-assisted buying. When remote shopping assistance is disabled at the store level, the container displays a feature-disabled message instead of the table.

Administrator activity log

Administrator activity log showing actions from a seller-assisted buying session
ParameterTypeReq?Description
classNamestringNoCustom CSS class applied to the root container element. Merged with the default class. Use to apply brand styles or integrate with a utility CSS framework.
pageSizenumberNoNumber of activity items shown per page. Controls both the GraphQL query page size and UI pagination. Defaults to 10. Use smaller values (5–10) for mobile-optimized views and larger values (15–25) for desktop auditing scenarios.
withWrapperbooleanNoControls whether the table is wrapped in the default Card component. Defaults to false. Set to true when you want the drop-in to provide its own card wrapper.

This container does not expose any customizable slots.

The boilerplate already includes the commerce-seller-assisted-buying-activity block, which renders this container with withWrapper: false. No changes are required to place the activity log on a page.

To increase the number of rows shown per page, pass pageSize to the render call in the block file:

await accountRenderer.render(SellerAssistedBuyingActivity, {
pageSize: 20,
withWrapper: false,
})(container);

To wrap the table in the drop-in’s default Card component, set withWrapper: true:

await accountRenderer.render(SellerAssistedBuyingActivity, {
withWrapper: true,
})(container);