Use the Omneo SDK to fetch a profile’s transaction history and render it in a front-end application. The SDK handles authentication and state management, so your UI subscribes to events rather than managing API calls directly.Documentation Index
Fetch the complete documentation index at: https://docs.omneo.io/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
Fetch and display transactions
Callhydrate('transactions') to register transaction data with the SDK, then subscribe to transactions.ready to receive the data when it loads.
items array with line-item detail.
Include product variant data
Standard transaction responses exclude product variant information. To retrieve transactions with variant details, use a direct SDKget call:
This approach bypasses the SDK’s state management — the response is returned directly and the SDK state is not updated. Handle the data manually in your UI.
Update the UI on changes
To keep the UI current after new transactions arrive, subscribe totransactions.update instead of (or in addition to) transactions.ready: