/ Docs

Telesign

Last updated October 13, 2025 · View as Markdown

Telesign_Logo.svg 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:

Telesign-1.png

  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 Telesign integration card and click it to open its connections.
  6. Under Authentication Method, choose Static.
  7. Click Authenticate.
  8. At this point, you should see the following result on the Vendor Integrations page:

Telesign-2.png

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