# Splash

![Splash_logo.svg](https://assets.relyanceuat.xyz/images/docs/16171044412813/16170530933773.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](https://api-docs.splashthat.com/#api-access):
```sql
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**.
8. Paste the **Client ID**, **Client Secret**, **Username**, and **Password** into their respective fields.

![Splash-1.png](https://assets.relyanceuat.xyz/images/docs/16171044412813/16170759519757.png)

9. Click **Authenticate**.
10. At this point, you should see the following result on the **Vendor** Integrations page:

![Splash-2.png](https://assets.relyanceuat.xyz/images/docs/16171044412813/16170759513613.png)

11. Congratulations, you are now connected to **Splash**.

<!-- terraform-examples:begin (generated from the integration catalog; do not hand-edit) -->

## Manage this integration with Terraform

Connections for this integration can be managed as code with the [Relyance Terraform provider](https://registry.terraform.io/providers/Relyance/relyance/latest). 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`.

```hcl
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 } }
}
```

<!-- terraform-examples:end -->
