/ Docs

Wootric

Last updated October 13, 2025 · View as Markdown

wootric_logo.png Wootric is a cloud-based customer experience and feedback management software that measures the customer experience. It provides surveys that be served inside other SaaS platorms, mobile apps, websites, emails or in SMS messages.

In order to integrate Wootric with Relyance AI you will need Client ID and Client Secret.

In Wootric:

  1. Login to your Wootric account.
  2. Click on the Settings cog icon in the right-side header.
  3. This will bring you to the Settings page. In the left-hand navigation click API.
  4. Copy the Client ID and Client Secret to be used in Relyance.

Wootric-3.png

Wootric-4.png

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 Wootric integration card and click it to open its connections.
  6. Under Authentication Method, choose Custom.
  7. If you're running your instance in an European Environment, click the checkbox.
  8. Paste the Client ID and Client Secret into their respective fields.

Wootric-1.png

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

Wootric-2.png

  1. Congratulations, you are now connected to Wootric.

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

  auth = {
    method = "client-credentials"
    params = {
      client_id = "<client_id>"
      data_storage_location = "us"
    }
    # Secret fields are write-only: sent to Relyance, never stored in state.
    secrets_wo = {
      client_secret = var.wootric_client_secret
      european_env = "false"
    }
    secrets_wo_version = 1
  }

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