> 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 # SetDefaultPrivacyStatus # Package: privacy # Namespace: DefaultPrivacyStatus # Method link: https://dev.wix.com/docs/api-reference/crm/members-contacts/members/member-management/privacy/default-privacy/set-default-privacy-status.md ## Permission Scopes: Manage Members: SCOPE.DC-MEMBERS.MANAGE-MEMBERS ## Introduction Sets the default privacy status of a site. --- ## REST API ### Schema ``` Method: setDefaultPrivacyStatus Description: Sets the default privacy status of a site. URL: https://www.wixapis.com/members/v1/default-privacy-status Method: PATCH # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: defaultPrivacy, defaultPrivacy.revision Method parameters: param name: defaultPrivacy | type: DefaultPrivacy | description: Default privacy defines the initial privacy status assigned to new members when they join a site. This setting determines whether new members start with public or private profiles by default. | required: true - 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. | required: true Return type: SetDefaultPrivacyStatusResponse - name: defaultPrivacy | type: DefaultPrivacy | description: 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 ### Set Default Privacy Status ```curl curl -X PATCH \ https://www.wixapis.com/members/v1/default-privacy-status \ -H 'Content-Type: application/json;charset=UTF-8' \ -H 'Authorization: ' -d '{ "defaultPrivacy": { "defaultPrivacy": "PUBLIC", "revision": "0" } }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.privacy.DefaultPrivacyStatus.setDefaultPrivacyStatus(defaultPrivacy) Description: Sets the default privacy status of a site. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: defaultPrivacy, defaultPrivacy.revision Method parameters: param name: defaultPrivacy | type: DefaultPrivacy | description: Default privacy defines the initial privacy status assigned to new members when they join a site. This setting determines whether new members start with public or private profiles by default. | required: true - 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. | required: true Return type: PROMISE - name: defaultPrivacy | type: DefaultPrivacy | description: 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 ### setDefaultPrivacyStatus ```javascript import { defaultPrivacy } from '@wix/members'; async function setDefaultPrivacyStatus(defaultPrivacy) { const response = await defaultPrivacy.setDefaultPrivacyStatus(defaultPrivacy); }; ``` ### setDefaultPrivacyStatus (with elevated permissions) ```javascript import { defaultPrivacy } from '@wix/members'; import { auth } from '@wix/essentials'; async function mySetDefaultPrivacyStatusMethod(defaultPrivacy) { const elevatedSetDefaultPrivacyStatus = auth.elevate(defaultPrivacy.setDefaultPrivacyStatus); const response = await elevatedSetDefaultPrivacyStatus(defaultPrivacy); } ``` ### setDefaultPrivacyStatus (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 setDefaultPrivacyStatus(defaultPrivacy) { const response = await myWixClient.defaultPrivacy.setDefaultPrivacyStatus(defaultPrivacy); }; ``` ---