> 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: siteMembers.getMember(options: FieldsetOptions) # Method Link: https://dev.wix.com/docs/sdk/frontend-modules/members/current-member/get-member.md # Method Description: Retrieves the currently logged-in member. `getMember()` returns a Promise that resolves to the currently logged-in member, or `undefined` if a member isn't logged in. > **Notes:** > - The member data in the resolved promise will only include custom fields from a site's contacts if those [fields are added to a site's members in a dashboard](https://support.wix.com/en/article/site-members-customizing-your-member-profile-fields). > - The frontend Members APIs aren't fully functional when previewing a site. View a published version of a site to see their complete functionality. # Method Permissions: # Method Permissions Scopes IDs: undefined # Method Code Examples: ## Get the currently logged-in member ```javascript import { currentMember } from '@wix/site-members'; // ... // Sample options value: // { // fieldsets: [ 'FULL' ] // } currentMember.getMember(options) .then((member) => { const id = member._id; const fullName = `${member.contactDetails.firstName} ${member.contactDetails.lastName}`; console.log(`Full name: ${fullName}\nID: ${id}`) }) .catch((error) => { console.error(error); }); /* Promise resolves to: * { * "_id": "f32cbc51-a331-442b-86c2-2c664613e8b9", * "_createdDate": "2021-08-02T23:14:42Z", * "_updatedDate": "2021-08-02T23:14:58.345Z", * "lastLoginDate": "2021-08-12T19:46:33Z", * "loginEmail": "claude.morales@example.com", * "contactId": "f32cbc51-a331-442b-86c2-2c664613e8b9", * "status": "APPROVED", * "privacyStatus": "PRIVATE", * "activityStatus": "ACTIVE", * "profile": { * "nickname": "Claude Morales", * "slug": "claudemorales", * "profilePhoto": { * "url": "//static.wixstatic.com/media/a27d24_0dd318~mv2.jpg", * "height": 256, * "width": 256, * "offsetX": 1, * "offsetY": 1 * }, * "coverPhoto": { * "url": "https://example.com/myimage.jpg", * "height": 1080, * "width": 1920, * "offsetX": 1, * "offsetY": 1 * }, * "title": "Awesome title" * }, * "contactDetails": { * "firstName": "Claude", * "lastName": "Morales", * "phones": [ * "0747-769-460" * ], * "emails": [ * "claude.morales@example.com" * ], * "addresses": [ * { * "country": "GB" * }, * { * "_id": "f0f4d905-488d-44db-9080-fc29078cfad5", * "addressLine": "9373 Park Avenue", * "addressLine2": "Berkshire", * "city": "Ely", * "subdivision": "GB-ENG", * "country": "GB", * "postalCode": "PD50 8EU" * } * ], * "customFields": { * "custom.pronouns": { * "name": "Pronouns", * "value": "they/them" * }, * "custom.nickname": { * "name": "Nickname", * "value": "Cee" * } * } * } * } */ ```