Smartsheet
Smartsheet offers a rich set of views, workflows, reports, and dashboards to capture and track your plans, resources, and schedules.
In order to integrate Smartsheet with Relyance AI you will need a Smartsheet API Token.
This integration requires a Smartsheet Business or Enterprise subscription.
In Smartsheet:

- Login to your Smartsheet account.
- From the homepage, click your account icon in the left-hand navigation menu at the bottom.
- Select Personal Settings....
- Click the API Access tab.
- Click the Generate new access token button.
- Provide a name for the new token and click OK.
- You will be presented with your Smartsheet API token inside a text box. Copy this key to be used in Relyance AI. You will not be able to access the API Key again after you leave this screen.
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 Smartsheet integration card and click it to open its connections.
- Under Authentication Method, choose Custom.
- Paste the Smartsheet API 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 Smartsheet.
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" "smartsheet" {
vendor = "smartsheet"
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.smartsheet_api_key
}
secrets_wo_version = 1
}
scans = { "data-inspection" = { enabled = true } }
}