> 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: getTier(tierId: string) # Method package: wixLoyaltyV2 # Method menu location: wixLoyaltyV2 --> tiers --> getTier # Method Link: https://dev.wix.com/docs/velo/apis/wix-loyalty-v2/tiers/get-tier.md # Method Description: Retrieves a specified loyalty tier. To retrieve a list of all of a site's tiers, use List Tiers. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Get tier (export from backend code) @description: ```javascript import { tiers } from "wix-loyalty.v2"; import { webMethod, Permissions } from "wix-web-module"; /* Sample tierId value: * * { * "tierId": "f882b4b5-44c4-42b4-a380-9662b55bbe71" * } */ export const getTier = webMethod( Permissions.Anyone, async (tierId) => { try { const result = await tiers.getTier(tierId); return result; } catch (error) { console.error(error); // Handle the error } }); /* Promise resolves to: * * { * "_createdDate": "2024-06-10T07:07:35.686Z", * "_id": "f882b4b5-44c4-42b4-a380-9662b55bbe71", * "_updatedDate": "2024-06-10T07:07:35.686Z", * "requiredPoints": 40, * "revision": "1", * "tierDefinition": { * "name": "Super API Tier", * "description": "Tiers created from API" * } * } */ ``` ## Get tier (dashboard page code) ```javascript import { tiers } from "wix-loyalty.v2"; /* Sample tierId value: * * { * "tierId": "f882b4b5-44c4-42b4-a380-9662b55bbe71" * } */ async function getTier(tierId) { try { const result = await tiers.getTier(tierId); return result; } catch (error) { console.error(error); // Handle the error } } /* Promise resolves to: * * { * "_createdDate": "2024-06-10T07:07:35.686Z", * "_id": "f882b4b5-44c4-42b4-a380-9662b55bbe71", * "_updatedDate": "2024-06-10T07:07:35.686Z", * "requiredPoints": 40, * "revision": "1", * "tierDefinition": { * "name": "Super API Tier", * "description": "Tiers created from API" * } * } */ ``` ---