/ Docs

Zoominfo

Last updated October 13, 2025 · View as Markdown

zoominfo-logo.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.
  7. Paste the Username and Password into their respective fields.

Zoominfo-1.png

The Authentication step asks for:

  • Username: required.
  • Password: required; held as a secret.
  1. Click Authenticate.
  2. At this point, you should see the following result on the Vendor Integrations page:

Zoominfo-2.png

  1. Congratulations, you are now connected to Zoominfo.

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" "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 } }
}