> 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: bulkAdjustPoints(options: BulkAdjustPointsOptions) # Method package: wixLoyaltyV2 # Method menu location: wixLoyaltyV2 --> accounts --> bulkAdjustPoints # Method Link: https://dev.wix.com/docs/velo/apis/wix-loyalty-v2/accounts/bulk-adjust-points.md # Method Description: Updates the points balance of multiple accounts. You can adjust the balance in two ways: - `balance` allows you to set the total points balance to this new amount. The transaction `type` will return as `"ADJUST"`. - `amount` allows you to adjust the points balance by this amount. This amount can be a positive number to increase the points balance or a negative number to decrease the balance. The transaction `type` will return as `"GIVE"`. You can use the job ID from the response to call [Get Async Job](https://dev.wix.com/docs/api-reference/business-management/async-job/get-async-job.md) to retrieve the job details and metadata. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## bulkAdjustPoints example for dashboard page code ```javascript import { accounts } from 'wix-loyalty.v2'; async function bulkAdjustPoints(options) { try { const result = await accounts.bulkAdjustPoints(options); return result; } catch (error) { console.error(error); // Handle the error } } ``` ## bulkAdjustPoints example for exporting from backend code ```javascript import { accounts } from 'wix-loyalty.v2'; import { webMethod, Permissions } from 'wix-web-module'; import { elevate } from 'wix-auth'; const elevatedBulkAdjustPoints = elevate(accounts.bulkAdjustPoints); export const bulkAdjustPoints = webMethod( Permissions.Anyone, async (options) => { try { const result = await elevatedBulkAdjustPoints(options); return result; } catch (error) { console.error(error); // Handle the error } } ); ``` ---