> 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/business-management/ai-site-chat/messages/sample-flows.md ## Article Content: # Messages: Sample Use Cases and Flows This article shares a possible use case your app or site could support, as well as a sample flow. This can be a helpful jumping-off point. ## Check that a response has been sent to every message from the site visitor To check that a response has been sent to every message from the site visitor: 1. Call [List Messages](https://dev.wix.com/docs/rest/business-management/ai-site-chat/ai-site-chat/messages/list-messages.md). 1. Create a copy of the messages returned in the response to include only messages sent by the site visitor. Call these "questions". 1. For each "question", iterate over the messages returned in the response to check if one exists that's an `answerTo` the "questions". 1. Call [Bulk Create Messages](https://dev.wix.com/docs/rest/business-management/ai-site-chat/ai-site-chat/messages/bulk-create-messages.md) to send "answers" to all the unanswered "questions".