> 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: getMember(_id: string, options: GetMemberOptions) # Method package: wixMembersV2 # Method menu location: wixMembersV2 --> members --> getMember # Method Link: https://dev.wix.com/docs/velo/apis/wix-members-v2/members/get-member.md # Method Description: Retrieves a member by ID. >**Note:** The returned Member object contains only the fields that were explicitly added to the Member object. Custom Contact fields are **not** automatically added to the Member object. They must be [added to the Member object by the site owner](https://support.wix.com/en/article/site-members-customizing-your-member-profile-fields). # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Get a member by ID with minimum parameters (export from backend code) ```javascript import { members } from 'wix-members.v2'; import { webMethod, Permissions } from 'wix-web-module'; import { elevate } from 'wix-auth'; /* Sample _id value: '60a91ab6-5e30-4af2-9d5e-a205c351ffd7' */ const elevatedgetMember = elevate(members.getMember); export const myGetMemberFunction = webMethod( Permissions.Anyone, async (_id, options) => { try { const member = await elevatedgetMember(_id, options); console.log('Member retrieved:', member); return member; } catch (error) { console.error(error); // Handle the error } } ); /* Promise resolves to: * { * "_createdDate": "2024-02-28T10:42:31.000Z", * "_id": "20aca292-e791-45b4-902f-7e7e22c96dd5", * "_updatedDate": "2024-02-28T10:42:30.891Z", * "activityStatus": "UNKNOWN", * "contactId": "20aca292-e791-45b4-902f-7e7e22c96dd5", * "privacyStatus": "UNKNOWN", * "profile": { * "nickname": "johnjonas", * "slug": "johnjonas" * }, * "status": "UNKNOWN" * } */ ``` ## Get a member by ID with all parameters (export from backend code) ```javascript import { members } from 'wix-members.v2'; import { webMethod, Permissions } from 'wix-web-module'; import { elevate } from 'wix-auth'; /* * Sample _id value: '60a91ab6-5e30-4af2-9d5e-a205c351ffd7' * * Sample options value: * { * fieldsets: [ 'FULL' ] * } */ const elevatedgetMember = elevate(members.getMember); export const myGetMemberFunction = webMethod( Permissions.Anyone, async (_id, options) => { try { const member = await elevatedgetMember(_id, options); console.log('Member retrieved:', member); return member; } catch (error) { console.error(error); // Handle the error } } ); /* Promise resolves to: * { * "_createdDate": "2024-02-28T10:42:31.000Z", * "_id": "20aca292-e791-45b4-902f-7e7e22c96dd5", * "_updatedDate": "2024-02-28T10:42:30.891Z", * "activityStatus": "UNKNOWN", * "contactId": "20aca292-e791-45b4-902f-7e7e22c96dd5", * "privacyStatus": "UNKNOWN", * "profile": { * "nickname": "johnjonas", * "slug": "johnjonas" * }, * "status": "UNKNOWN" * } */ ``` ## Get a member by ID (dashboard page code) ```javascript import { members } from 'wix-members.v2'; /* Sample _id value: '60a91ab6-5e30-4af2-9d5e-a205c351ffd7' */ export async function myGetMemberFunction(_id, options){ try { const member = await members.getMember(_id, options); console.log('Member retrieved:', member); return member; } catch (error) { console.error(error); // Handle the error } }; /* Promise resolves to: * { * "_createdDate": "2024-02-28T10:42:31.000Z", * "_id": "20aca292-e791-45b4-902f-7e7e22c96dd5", * "_updatedDate": "2024-02-28T10:42:30.891Z", * "activityStatus": "UNKNOWN", * "contactId": "20aca292-e791-45b4-902f-7e7e22c96dd5", * "privacyStatus": "UNKNOWN", * "profile": { * "nickname": "johnjonas", * "slug": "johnjonas" * }, * "status": "UNKNOWN" * } */ ``` ---