# Zoominfo

![zoominfo-logo.svg](https://assets.relyanceuat.xyz/images/docs/6705547289997/6705036711821.svg)
ZoomInfo is a subscription-based software as a service (SaaS) company that provides detailed information on millions of businesses and business professionals. It provides sellers, marketers, and recruiters with comprehensive information to help them find potential new customers or employees.

In order to integrate Zoominfo with Relyance AI you will need to authorize Relyance AI with a **Username** and **Password**.

In order to integrate with Zoominfo, you will need to be subscribed to Zoominfo's

API product

.

API access is a separate product that Zoominfo provides. Please see this article for more info:

https://www.zoominfo.com/solutions/data-as-a-service/enterprise-api

#### 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 **Zoominfo** integration card and click it to open its connections.
6. Under **Authentication Method**, choose **Custom**.
8. Paste the **Username** and **Password** into their respective fields.

![Zoominfo-1.png](https://assets.relyanceuat.xyz/images/docs/6705547289997/6705579345293.png)

The **Authentication** step asks for:

- **Username**: required.
- **Password**: required; held as a secret.

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

![Zoominfo-2.png](https://assets.relyanceuat.xyz/images/docs/6705547289997/6705544487053.png)

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

<!-- 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" "zoominfo" {
  vendor = "zoominfo"
  name   = "<your connection name>"

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

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

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