/ Docs

JazzHR

Last updated October 13, 2025 · View as Markdown

jazzhr-logo.png JazzHR is a Software as a Service (SaaS) Applicant Tracking System (ATS) that helps HR teams find and hire talent.

In order to integrate JazzHR with Relyance AI you will need a JazzHR API Key.

In JazzHR:

  1. Login to your JazzHR account.
  2. Go here: https://app.jazz.co/app/settings/integrations
  3. Copy your API Key to be used in Relyance.

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 JazzHR integration card and click it to open its connections.
  6. Under Authentication Method, choose Custom.
  7. Paste the API Key into their respective fields.

JazzHR-1.png

The Authentication step asks for:

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

JazzHR-2.png

  1. Congratulations, you are now connected to JazzHR.

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

  auth = {
    method = "api-key"
    params = {
      data_storage_location = "us"
    }
    # Secret fields are write-only: sent to Relyance, never stored in state.
    secrets_wo = {
      api_key = var.jazzhr_api_key
    }
    secrets_wo_version = 1
  }

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