> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Method name: listTransactionsForSingleOrder(orderId: string) # Method package: wixEcomBackend # Method menu location: wixEcomBackend --> orderTransactions --> listTransactionsForSingleOrder # Method Link: https://dev.wix.com/docs/velo/apis/wix-ecom-backend/order-transactions/list-transactions-for-single-order.md # Method Description: Retrieves information about payments and refunds associated with a specified order. The `listTransactionsForSingleOrder()` function returns a Promise that resolves when the specified order's transaction records are retrieved. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## listTransactionsForSingleOrder example for dashboard page code ```javascript import { orderTransactions } from 'wix-ecom-backend'; async function listTransactionsForSingleOrder(orderId) { try { const result = await orderTransactions.listTransactionsForSingleOrder(orderId); return result; } catch (error) { console.error(error); // Handle the error } } ``` ## listTransactionsForSingleOrder example for exporting from backend code ```javascript import { orderTransactions } from 'wix-ecom-backend'; import { webMethod, Permissions } from 'wix-web-module'; import { elevate } from 'wix-auth'; const elevatedListTransactionsForSingleOrder = elevate(orderTransactions.listTransactionsForSingleOrder); export const listTransactionsForSingleOrder = webMethod( Permissions.Anyone, async (orderId) => { try { const result = await elevatedListTransactionsForSingleOrder(orderId); return result; } catch (error) { console.error(error); // Handle the error } } ); ``` ---