> 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/app-management/bi-event/sample-flows.md ## Article Content: # BI Events: Sample flows This article outlines key flows for sending BI events and explains their implications. ## Alert users when app setup is incomplete To alert users that your app requires additional configuration, such as setting preferences or creating an account, Wix can display a "Setup incomplete" status badge next to your app in the site dashboard. To enable the badge, your app has to send the `APP_FINISHED_CONFIGURATION` event at least once. Wix will then recognize your app as requiring additional setup and show the badge for future installations. Once you determine that the [app instance](https://dev.wix.com/docs/build-apps/develop-your-app/access/app-instances/about-app-instances.md) has completed the setup of the app, send the event for that instance to remove the badge and mark it as configuration finished. The process looks like this: 1. A user installs your app. At this point: * If you’ve sent the `APP_FINISHED_CONFIGURATION` event at least once, the user sees the "Status incomplete" badge next to your app in the site dashboard. * If you haven’t sent the event, no setup status is shown to the user. 1. Upon opening the app, your app prompts the user to complete the setup. 1. After setup is complete, your app sends the `APP_FINISHED_CONFIGURATION` event, including an [OAuth](https://dev.wix.com/docs/build-apps/develop-your-app/access/authentication/about-oauth.md) access token for the relevant app instance in the `Authorization` header. 1. Wix removes the "Setup incomplete" status badge next to your app in the site dashboard.
**Warning**: After sending the `APP_FINISHED_CONFIGURATION` event, your app will always show a "Setup incomplete" status for new installations. This behavior can't be disabled.