> 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/members-about-v2/sample-use-cases-and-flows.md ## Article Content: # Members About: Sample Use Cases and Flows This article presents a possible use case and corresponding sample flow that you can support. This can be a helpful jumping-off point as you plan your implementation. ## Moderate Content for About Sections To maintain a safe and respectful online community, platforms often need to moderate the content that members write in their "About" sections. This ensures compliance with community guidelines, legal standards, or platform-specific rules. For example, no offensive language, hate speech, or personal contact details. If a member filled in their "About" section using offensive language, you could detect and flag such inappropriate or prohibited content and notify the Wix user. To moderate content of the "About" sections: 1. Use [Member About Created](https://dev.wix.com/docs/rest/crm/members-contacts/members/members-about-v2/member-about-created.md) and [Member About Updated](https://dev.wix.com/docs/rest/crm/members-contacts/members/members-about-v2/member-about-updated.md) to listen for when a member "About" section is created or updated. When one of the events are triggered retrieve the content from the event data. 1. Scan the retrieved content for: - Prohibited language: Offensive, discriminatory, or violent speech. For example, the moderation flag could be "Contains offensive language." - Malicious content: Links to harmful websites or phishing attempts. For example, the moderation flag could be "Includes an external URL." 1. If inappropriate content is detected: - Flag the member's "About" section for review. - Notify the member with a reason for the flagging and a link to the community guidelines. 1. Call [Update Member About](https://dev.wix.com/docs/rest/crm/members-contacts/members/members-about-v2/update-member-about.md) to replace the content with a placeholder message. For example, "This section is under review for potential violations of our guidelines." 1. Provide flagged content to human moderators for review. Moderators could: - Approve the content if it's acceptable. - Call [Update Member About](https://dev.wix.com/docs/rest/crm/members-contacts/members/members-about-v2/update-member-about.md) or [Delete Member About](https://dev.wix.com/docs/rest/crm/members-contacts/members/members-about-v2/delete-member-about.md) to edit or delete the inappropriate content.