Skip to content

Forsta Plus Server

Forsta Mobile App edited this page Feb 23, 2026 · 1 revision

Forsta Plus Server is the core element that contains information about which Forsta Plus environment your app will connect to. To interact with the SDK, you will need to pass this Server ID to the SDK methods.

Forsta Plus Production Environments

For convenience, the SDK provides the ConfirmitServer objects as default servers.

eg)

  • US: US
  • Euro: UK
  • ...

Most of the SDK methods require Server ID as a parameter to let the SDK know which environment is currently used.

// Android
// Example connecting to US site
val serverId = ConfirmitServer.US.serverId

If the Forsta Plus site that you need to connect to does not have a pre-defined server, manually configure the server using:

See ConfirmitServer.configure()

// Example connecting to US2 site
val serverId = ConfirmitServer.configure(
    name = "US2",
    host = "us2.hxplatform.com",
    clientId = "8f7a5e3c-9a42-4f7f-bdf1-2e8c93c1c4a1",
    clientSecret = "c3d9f4c2-1b7a-4c68-8c24-9f0d27f8e6b3"
)

Multiple Site Support

Note: It is possible to have your app configured to have Digital Feedback programs from multiple servers.

On-Premise Environments

Note: At the present time, On-premise Forsta Plus installations are not supported.

Clone this wiki locally