> 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: listCurrentMemberOrders(filters: CurrentMemberFilterOptions, sorting: SortingOptions, paging: PaginationOptions) # Method package: wixPricingPlansBackend # Method menu location: wixPricingPlansBackend --> Orders --> listCurrentMemberOrders # Method Link: https://dev.wix.com/docs/velo/apis/wix-pricing-plans-backend/orders/list-current-member-orders.md # Method Description: Lists orders for the currently logged-in member. The `listCurrentMemberOrders()` function returns a Promise that resolves to a list of up to 100 pricing plan orders. You can specify options for filtering, sorting, and paginating the results. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## List orders for the currently logged-in member ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { orders } from 'wix-pricing-plans-backend'; /* Sample filters object: * { * orderStatuses: ['PAUSED', 'CANCELED'] * } */ /* Sample sorting object: * { * fieldName: ['createdDate'], * order: ['ASC'] * } */ /* Sample paging object: * { * limit: 3, * skip: 1 * } */ export const myListCurrentMemberOrdersFunction = webMethod(Permissions.Anyone, async (filters, sorting, paging) => { try { const listedOrders = await orders.listCurrentMemberOrders(filters, sorting, paging); const firstOrderId = listedOrders[0]._id; const firstOrderStatus = listedOrders[0].status; return listedOrders; } catch (error) { console.error(error); } }); ``` ---