Links

Deep links

Appetizes deep linking feature can be used to simplify user workflows and reduce friction by allowing users to jump directly to relevant content or actions.
Supported Links
  • Android AppLinks / iOS Universal Links
  • Custom Schema Deeplinks
  • Web Links

With Query Parameter

This URL will be invoked on launch of the device.
Set the deep-link URL by adding the URL encoded launchUrl query parameter to your app or embed URL.
&launchUrl=https%3A%2F%2Fwww.appetize.io
See Query Params Reference for more information.

With JavaScript SDK

Set the deep-link URL of the device via our JavaScript SDK

With Configuration

This URL will be invoked on launch of the device.
await client.config({
launchUrl: "https://www.appetize.io",
...
})
See Configuration for more information.

With openUrl()

This can be called multiple times after launch of the device.
await session.openUrl("https://appetize.io")
See the API Reference for more information.