> 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 Flows ## Article: Sample Flows ## Article Link: https://dev.wix.com/docs/api-reference/crm/members-contacts/members/activity/activity-counters/sample-flows.md ## Article Content: # Sample Flows This article shares some possible use cases your implementation could support, as well as an example flow that could support each use case. You're certainly not limited to these use cases, but they can be a helpful jumping off point as you plan your implementation. ## Display "most influential member" data You can display the "most influential members" data to a site page or dashboard page, based on how many likes and comments each member's posts get. 1. Collect per-member reaction numbers for the Wix Blog and/or Wix Forum apps by calling [Get Activity Counters](https://dev.wix.com/docs/rest/crm/members-contacts/members/activity-counters/get-activity-counters.md). 2. Display the returned values. ## Display "high priority customer" data Create a counter for customer activities you consider to be highest priority, for example purchases, and display "high priority customer" data in a dashboard page, displaying the site members with the highest numbers of high-priority actions. 1. Plan the relevant counters and define an identifying `key` for each. 2. Track the relevant activity per site member. 3. When a member takes a relevant action, call [Set Activity Counters](https://dev.wix.com/docs/rest/crm/members-contacts/members/activity-counters/set-activity-counters.md) with the relevant key. The counter will be created for each member the first time you call this method to set the activity. Note that if your counter is public, all apps, site visitors and members can access it. 4. When a Wix user opens the relevant dashboard page, collect activity counters per member by calling [Get Activity Counters](https://dev.wix.com/docs/rest/crm/members-contacts/members/activity-counters/get-activity-counters.md). 5. Display the returned values.