ActionsopenBrowserVersion: 4.60On this pageopenBrowser Opens a website with the specified URL. Can be either within an internal browser overlaying the app or jumping out of the app context and using the user's default browser. Field Configurations KeyTypeDescriptionDefault Value"params" (required)Objectundefinednull Parameters KeyTypeDescriptionDefault Value"alertMessage"StringMessage for the pop-up when exiting the app.null"alertTitle"StringTitle for the pop-up when exiting the app.null"async"BooleanSpecifies whether the action should perform asynchronously.null"external"Boolean,StringOpens the URL in the external browser.null"showAlert"Boolean,StringExecutes an askUser action before the URL is openedtrue"url" (required)StringThe URL to be opened.null Inherited From Base ActionBase ActionField ConfigurationsKeyTypeDescriptionDefault Value"dynamicParams"ObjectDynamic params to retrieve data from a specific context e.g. a userSetting.null"leadingDelimiter"StringThe leading mustache delimiter to use.null"params"Object,ArrayObject containing the properties of the action.null"trailingDelimiter"StringThe trailing mustache delimiter to use.null"type"StringType name of the action.null Examples Example 1: Open a URL in the browser. Goal: Create an openBrowser action. The url parameter specifies the website that is to be opened. { "type": "openBrowser", "params": { "url": "https://fabrik19.de", "external": true, "showAlert": true, "alertTitle": "You are leaving the app!", "alertMessage": "Are you sure you want to continue?" }} The alertTitle and alertMessage parameters set the text for the pop-up when exiting the app. Result: An openBrowser action has been created.