> 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 ## Resource: Sample Use Cases and Flows ## Article: Sample Use Cases and Flows ## Article Link: https://dev.wix.com/docs/api-reference/crm/members-contacts/members/member-management/privacy/member-privacy-settings/sample-use-cases-and-flows.md ## Article Content: # Member Privacy Settings API: Sample Use Case and Flow This article presents possible use cases and corresponding sample flows that you can support. This can be a helpful jumping off point as you plan your implementation. ## Temporarily change privacy settings for event participation In this scenario, a platform hosts virtual events, and during these events, participants should temporarily make their profiles public to encourage networking and interaction. However, once the event is over, participants’ profiles should revert to their original privacy settings. To change privacy settings for an event: 1. Call [Create Event](https://dev.wix.com/docs/rest/business-solutions/events/events-v3/create-event.md) and store the event details along with a list of participants. 1. Schedule when the privacy settings should change for participants, such as starting 1 hour before the event begins and ending 1 hour after the event finishes. 1. Before the event starts, call [Set Member Privacy Settings](https://dev.wix.com/docs/rest/crm/members-contacts/members/member-privacy-settings/set-member-privacy-settings.md) and change the `publicMemberVisibility` field to `VISIBLE_TO_ALL`. 1. After the event ends, revert the profile visibility settings to the original settings using the stored backup. This ensures that the participant’s profile returns to the level of visibility it had before the event. 1. The entire process can be automated with backend events, such as: - [Event started](https://dev.wix.com/docs/rest/business-solutions/events/events-v3/event-started.md): Triggered automatically at the event’s start time. - [Event ended](https://dev.wix.com/docs/rest/business-solutions/events/events-v3/event-ended.md): Triggered automatically at the event’s end time.