Telesign
Telesign provides digital identity and programmable communications APIs to prevent fraud and enable omnichannel engagement.
Telesign does not have a public API that reports PI. In this case, Relyance has a Static connection type that derives PI from the vendor API documentation.
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 Telesign integration card and click it to open its connections.
- Under Authentication Method, choose Static.
- Click Authenticate.
- At this point, you should see the following result on the Vendor Integrations page:

- Congratulations, you are now connected to Telesign.
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" "telesign" {
vendor = "telesign"
name = "<your connection name>"
auth = {
method = "no-credentials"
params = {
data_storage_location = "us"
}
}
scans = { "property-inspection" = { enabled = true } }
}