Help Scout
Help Scout is a Software-as-a-Service (SaaS) solution that combines elements of customer support with a customer experience management (CRM) into a single platform. It is a dedicated customer support platform built for growing teams to deliver best-in-class customer service.
Relyance AI provides two (2) options to integrate a tenant's Help Scout account:
Option 1 - Using Help Scout's Mailbox API 2.0
In order to integrate Help Scout Mailbox API 2.0 with Relyance AI you will need an App ID and App Secret.
In Help Scout:

- Login to your Help Scout account.
- Click on the profile menu in the top right-hand corner and select Your Profile.
- Click on My Apps in the left navigation menu.
- Click on Create My App button to create a Mailbox API app.
- Fill out the dialog with these details: App Name: << Provide a relevant name e.g. Relyance AI >> Redirection URL: https://root.relyance.ai/api/oauth2
- Click Create.
- Copy the App ID and App Secret to be used in Relyance.
- Click Save.

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 Help Scout integration card and click it to open its connections.
- Under Authentication Method, choose Oauth2 / App Token - Mailbox API 2.0.
- Paste the App ID and App Secret into their respective fields.

The Authentication step asks for:
- Using Oauth2 / App Token - Mailbox API 2.0 —
- App ID: required.
- App Secret: required; held as a secret.
- Using HTTP Basic / API Key - Docs API —
- Docs API Key: required; held as a secret.
- Password: required; held as a secret.
- Click Authenticate.
- This will bring your to Help Scout to grant permissions to Relyance. Click Authorize.

At this point, you should see the following result on the Vendor Integrations page:
Congratulations, you are now connected to Help Scout.
Option 2 - Using the Docs API
In order to integrate Help Scout Docs API with Relyance AI you will need a Docs API Key and Password.
In Help Scout:
- Login to your Help Scout account.
- Click on the profile menu in the top right-hand corner and select Your Profile.
- Click on Authentication in the left navigation menu.
- Select the API Keys tab.
- Copy the API Key to be used in Relyance.
- The Password will be the logged in user password.

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 Help Scout integration card and click it to open its connections.
- Under Authentication Method, choose HTTP Basic / API Key - Docs API.
- Paste the Docs API Key and Password into their respective fields.

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

- Congratulations, you are now connected to Help Scout.
If the connection reports Connected but returns nothing
These are the ways this integration comes back empty without reporting an error. Generated from the integration catalog, so it tracks what the connection actually asks for.
- Authorised, then empty. The connection carries an authorisation, not a password: it stops returning data if the account that granted it loses access, its own permissions narrow, or the grant is revoked at the vendor. None of that reports an error here -- the connection keeps its last status until the next scan.
- A credential rotated at the vendor is not picked up here. App Secret, Docs API Key and Password are stored when you save the connection, so regenerating the value at the vendor breaks the next scan until it is re-pasted here. Recording the expiry on the connection means Relyance warns you before it lapses.
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.
OAuth (browser authorization)
The OAuth (browser authorization) method uses a browser authorization flow, so the connection is created in the Relyance app. Manage it in Terraform afterwards by importing it (terraform import relyance_integration_connection.example helpscout/<connection_id>) or reading it with the relyance_integration_connection data source.
API key
resource "relyance_integration_connection" "helpscout_1" {
vendor = "helpscout"
name = "<your connection name>"
auth = {
method = "api-key"
params = {
data_storage_location = "us"
}
# Secret fields are write-only: sent to Relyance, never stored in state.
secrets_wo = {
api_key = var.helpscout_api_key
password = var.helpscout_password
}
secrets_wo_version = 1
}
scans = { "property-inspection" = { enabled = true } }
}