/ Docs

Splash

Last updated October 13, 2025 · View as Markdown

Splash_logo.svg Splash is an online SaaS platform used for event marketing that helps companies market, manage, and measure their live, virtual, and hybrid event programs.

In order to integrate Splash with Relyance AI you will need a Client ID, Client Secret, Username, and Password.

In Splash:

  1. Your Username and Password will be the same username and password you use to login to Splash.
  2. As per the API documentation:
Use of the API requires a Client ID and a Client Secret. These are
obtained by contacting your Customer Success Manager and discussing
your API needs. Once the Client ID and Client Secret are generated,
they can be delivered via a secure, cryptographic messaging app.

Contact your Splash Customer Success Manager to retrieve your Client ID and Client Secret.

In the Relyance AI application:

  1. Login to your Relyance account.
  2. Navigate to the Settings Menu in the bottom left-hand side.
  3. Select Integrations.
  4. Click on the Vendor Integration tab.
  5. Find the Splash integration card and click it to open its connections.
  6. Under Authentication Method, choose Custom.
  7. Paste the Client ID, Client Secret, Username, and Password into their respective fields.

Splash-1.png

  1. Click Authenticate.
  2. At this point, you should see the following result on the Vendor Integrations page:

Splash-2.png

  1. Congratulations, you are now connected to Splash.

Manage this integration with Terraform

Connections for this integration can be managed as code with the Relyance Terraform provider. Non-secret fields go in auth.params; secret fields go in auth.secrets_wo, which is write-only — never stored in Terraform state. Rotate secrets by bumping auth.secrets_wo_version.

resource "relyance_integration_connection" "splash" {
  vendor = "splash"
  name   = "<your connection name>"

  auth = {
    method = "username-password"
    params = {
      client_id = "<client_id>"
      username = "<username>"
      data_storage_location = "us"
    }
    # Secret fields are write-only: sent to Relyance, never stored in state.
    secrets_wo = {
      client_secret = var.splash_client_secret
      password = var.splash_password
    }
    secrets_wo_version = 1
  }

  scans = { "property-inspection" = { enabled = true } }
}