/ Docs

ON24

Last updated October 13, 2025 · View as Markdown

ON24_Logo.svg ON24 is a sales and marketing platform for digital engagement, delivering insights that drive revenue growth. It is used to create live-streamed, multi-session digital events that engage audiences with video-based participation and networking.

In order to integrate ON24 with Relyance AI you will need a Client ID, Token Key, and Token Secret.

In ON24:

  1. Login to your ON24 account.
  2. Go to the Analytics> API Dashboard.
  3. Click on the Provision a New API Access Token button.
  4. This will generate the following: Copy these to be used in Relyance.
    • Client ID
    • Access Token Key
    • Access Token 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 ON24 integration card and click it to open its connections.
  6. Under Authentication Method, choose Custom.
  7. Select the European Union (EU) data center checkbox if using one.
  8. Paste the Client ID, Token Key, and Token Secret into their respective fields.

ON24-1.png

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

ON24-2.png

  1. Congratulations, you are now connected to ON24.

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

  auth = {
    method = "access-token"
    params = {
      client_id = "<client_id>"
      data_storage_location = "us"
    }
    # Secret fields are write-only: sent to Relyance, never stored in state.
    secrets_wo = {
      token_key = var.on24_token_key
      token_secret = var.on24_token_secret
      is_european_database = "false"
    }
    secrets_wo_version = 1
  }

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