> 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 Flow ## Article: Sample Flow ## Article Link: https://dev.wix.com/docs/api-reference/business-management/automations/triggers/trigger-catalog/sample-flow.md ## Article Content: # Sample Flow 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. ## Retrieve the triggers provided by a specific app on a site To view the available triggers for the Wix Inbox app that are installed on a site, call [Resolve Triggers](https://dev.wix.com/docs/api-reference/business-management/automations/triggers/trigger-catalog/resolve-triggers.md) and specify the [Wix Inbox app ID](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/platform/about-apps-created-by-wix.md) as a filter: ```json { "query": { "filter": { "appId": "141fbfae-511e-6817-c9f0-48993a7547d1" } } } ``` Resolve Triggers returns an array of triggers owned by Wix Inbox. Here’s an example of a possible response: ```json { "results": [ { "appId": "141fbfae-511e-6817-c9f0-48993a7547d1", "triggerKey": "wix_chat-message_sent_to_uou", "payloadDataSchema": { "type": "object", "$schema": "http://json-schema.org/draft-07/schema", "required": ["summary"], "properties": { "summary": { "type": "string", "title": "Chat message summary", "examples": ["Thanks for signing up."], "description": "A short preview text for a chat message." }, "contactId": { "format": "uuid", "examples": ["b9515494-04d2-4d53-a44c-4e0c54894daf"], "description": "A unique identifier for the contact the message was sent to.", "title": "Contact ID", "type": "string", "identityType": "contact" }, "visitorId": { "format": "uuid", "examples": ["3e884e7f-da65-53dc-ab09-3655e283dd40"], "description": "A unique identifier for the site visitor the message was sent to.", "title": "Visitor ID", "type": "string", "identityType": "visitor" } } }, "displayName": "Chat message sent", "maturity": "GA", "filters": [], "metadata": { "hidden": false }, "implementedMethods": { "validateConfiguration": false, "getDynamicSchema": false, "refreshPayload": false }, "source": { "type": "DEV_CENTER" } }, { "appId": "141fbfae-511e-6817-c9f0-48993a7547d1", "triggerKey": "wix_chat-message_receive_from_uou", "payloadDataSchema": { "type": "object", "$schema": "http://json-schema.org/draft-07/schema", "required": ["summary"], "properties": { "summary": { "type": "string", "title": "Chat message summary", "examples": ["Thanks for signing up."], "description": "A short preview text for a chat message." }, "contactId": { "format": "uuid", "examples": ["b9515494-04d2-4d53-a44c-4e0c54894daf"], "description": "A unique identifier for the contact who sent the message.", "title": "Contact ID", "type": "string", "identityType": "contact" }, "visitorId": { "format": "uuid", "examples": ["3e884e7f-da65-53dc-ab09-3655e283dd40"], "description": "A unique identifier for a specific site visitor who sent the message.", "title": "Visitor ID", "type": "string", "identityType": "visitor" } } }, "displayName": "Inbox message received (chat or email)", "maturity": "GA", "filters": [], "metadata": { "hidden": false }, "implementedMethods": { "validateConfiguration": false, "getDynamicSchema": false, "refreshPayload": false }, "source": { "type": "DEV_CENTER" } } ], "paging": { "count": 2, "offset": 0, "total": 2, "hasNext": false } } ```