The deeplink URL should include the miniapp ID and the relevant URL route if needed to land the user on a specific page.The user will first deeplink to the host app, which then parses the deeplink to obtain the miniapp ID and the path to the page.
val appId = "<app_id>" // Get miniapp appId from deeplinkBoxo.getExistingMiniapp(appId)?.close()Boxo.getMiniapp(appId) .setConfig( MiniappConfig.Builder() .setData(mapOf("deeplink" to "/help")) .saveState(false) .build() ) .open(activity)