# Wootric

![wootric_logo.png](https://assets.relyanceuat.xyz/images/docs/13084283504269/13080978606221.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](https://assets.relyanceuat.xyz/images/docs/13084283504269/13084178114701.png)

![Wootric-4.png](https://assets.relyanceuat.xyz/images/docs/13084283504269/13084187354253.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**.
8. If you're running your instance in an **European Environment**, click the checkbox.
9. Paste the **Client ID** and **Client Secret** into their respective fields.

![Wootric-1.png](https://assets.relyanceuat.xyz/images/docs/13084283504269/13081078796557.png)

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

![Wootric-2.png](https://assets.relyanceuat.xyz/images/docs/13084283504269/13081078725517.png)

12. Congratulations, you are now connected to **Wootric**.

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

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