> 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: getProgramTotals() # Method package: wixLoyaltyV2 # Method menu location: wixLoyaltyV2 --> accounts --> getProgramTotals # Method Link: https://dev.wix.com/docs/velo/apis/wix-loyalty-v2/accounts/get-program-totals.md # Method Description: Retrieves the total amount of points earned, redeemed, and adjusted for the entire loyalty program. The `balance` is the current total of points outstanding, while the `earned`, `adjusted`, and `redeemed` amounts are the all-time accumulated amounts. The totals include the amounts for all loyalty accounts. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Get the total points for the entire loyalty program (dashboard page code) ```javascript import { accounts } from 'wix-loyalty.v2'; export async function myGetProgramTotalsFunction() { try { const programTotals = await accounts.getProgramTotals(); const currentBalance = programTotals.points.balance; const redeemed = programTotals.points.redeemed; console.log('Success! ', redeemed, ' total points have been redeemed in the life of this program.'); return programTotals; } catch (error) { console.error(error); } } /* Promise resolves to: * { * "points": { * "balance": 2046, * "earned": 1475, * "adjusted": 571, * "redeemed": 0 * } * } */ ``` ## Get the total points for the entire loyalty program (export from backend code) ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { accounts } from 'wix-loyalty.v2'; export const myGetProgramTotalsFunction = webMethod( Permissions.Anyone, async () => { try { const programTotals = await accounts.getProgramTotals(); const currentBalance = programTotals.points.balance; const redeemed = programTotals.points.redeemed; console.log('Success! ', redeemed, ' total points have been redeemed in the life of this program.'); return programTotals; } catch (error) { console.error(error); } }); /* Promise resolves to: * { * "points": { * "balance": 2046, * "earned": 1475, * "adjusted": 571, * "redeemed": 0 * } * } */ ``` ---