ProfitWell
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:
- Login to your ProfitWell account.
- Click on the cogwheel in the bottom left-hand side to open up your settings.
- Select Integrations from the resulting menu.
- Select the Paddle Metrics API tab from Integrations page.
- Copy the Private Token to be used in Relyance.


In the Relyance AI application:
- Login to your Relyance account.
- Navigate to the Settings Menu in the bottom left-hand side.
- Select Integrations.
- Click on the Vendor Integration tab.
- Find the ProfitWell integration card and click it to open its connections.
- Under Authentication Method, choose Custom.
- Paste the Private Token into its respective field.

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

- 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 } }
}