/ Docs

ProfitWell

Last updated October 13, 2025 · View as Markdown

ProfitWellLogo_Large.png ProfitWell is an online churn management solution designed to help businesses improve conversion rates and automate churn reduction using a white-labeled platform. It does this by driving better monetization, customer retention, and insights, with solutions backed by data science.

In order to integrate ProfitWell with Relyance AI you will need a Private Token.

ProfitWell is now Paddle Metrics.

In ProfitWell:

  1. Login to your ProfitWell account.
  2. Click on the cogwheel in the bottom left-hand side to open up your settings.
  3. Select Integrations from the resulting menu.
  4. Select the Paddle Metrics API tab from Integrations page.
  5. Copy the Private Token to be used in Relyance.

Screenshot

Screenshot

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 ProfitWell integration card and click it to open its connections.
  6. Under Authentication Method, choose Custom.
  7. Paste the Private Token into its respective field.

ProfitWell-1.png

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

ProfitWell-2.png

  1. Congratulations, you are now connected to ProfitWell.

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

  auth = {
    method = "access-token"
    params = {
      data_storage_location = "us"
    }
    # Secret fields are write-only: sent to Relyance, never stored in state.
    secrets_wo = {
      private_token = var.profitwell_private_token
    }
    secrets_wo_version = 1
  }

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