> 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 # GetDefaultPrivacyStatus # Package: privacy # Namespace: DefaultPrivacyStatus # Method link: https://dev.wix.com/docs/api-reference/crm/members-contacts/members/member-management/privacy/default-privacy/get-default-privacy-status.md ## Permission Scopes: Read Members: SCOPE.DC-MEMBERS.READ-MEMBERS ## Introduction Retrieves the default privacy status of a site. --- ## REST API ### Schema ``` Method: getDefaultPrivacyStatus Description: Retrieves the default privacy status of a site. URL: https://www.wixapis.com/members/v1/default-privacy-status Method: GET Return type: GetDefaultPrivacyStatusResponse - name: defaultPrivacy | type: DefaultPrivacy | description: Retrieved default privacy settings. - name: id | type: string | description: Privacy GUID. - name: defaultPrivacy | type: Privacy | description: Default privacy status for a new member. - enum: - PRIVATE: Default privacy status is private. All members have private profiles with no option to make them public. - PUBLIC: Default privacy status is public. All members can make their profile public. - name: revision | type: string | description: Revision number, which increments by 1 each time the default privacy is updated. To prevent conflicting changes, the existing revision must be used when updating default privacy. ``` ### Examples ### Get Default Privacy Status ```curl curl -X GET \ https://www.wixapis.com/members/v1/default-privacy-status \ -H 'Authorization: ' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.privacy.DefaultPrivacyStatus.getDefaultPrivacyStatus() Description: Retrieves the default privacy status of a site. Return type: PROMISE - name: defaultPrivacy | type: DefaultPrivacy | description: Retrieved default privacy settings. - name: _id | type: string | description: Privacy GUID. - name: defaultPrivacy | type: Privacy | description: Default privacy status for a new member. - enum: - PRIVATE: Default privacy status is private. All members have private profiles with no option to make them public. - PUBLIC: Default privacy status is public. All members can make their profile public. - name: revision | type: string | description: Revision number, which increments by 1 each time the default privacy is updated. To prevent conflicting changes, the existing revision must be used when updating default privacy. ``` ### Examples ### getDefaultPrivacyStatus ```javascript import { defaultPrivacy } from '@wix/members'; async function getDefaultPrivacyStatus() { const response = await defaultPrivacy.getDefaultPrivacyStatus(); }; ``` ### getDefaultPrivacyStatus (with elevated permissions) ```javascript import { defaultPrivacy } from '@wix/members'; import { auth } from '@wix/essentials'; async function myGetDefaultPrivacyStatusMethod() { const elevatedGetDefaultPrivacyStatus = auth.elevate(defaultPrivacy.getDefaultPrivacyStatus); const response = await elevatedGetDefaultPrivacyStatus(); } ``` ### getDefaultPrivacyStatus (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { defaultPrivacy } from '@wix/members'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { defaultPrivacy }, // Include the auth strategy and host as relevant }); async function getDefaultPrivacyStatus() { const response = await myWixClient.defaultPrivacy.getDefaultPrivacyStatus(); }; ``` ---