Linksquares
LinkSquares is a legal tech company that offers contract analytics and management software, utilizing artificial intelligence and machine learning to extract data from contracts, streamline contract review, and enhance compliance for businesses.
In order to integrate LinkSquares with Relyance AI you will need an API Key.
In LinkSquares:
- Login to your LinkSquares account.
- At the top of the screen, click the matrix icon (the 9 dots) and select SETTINGS.
- Click API Keys.
- Click the GENERATE API KEY button.
- Copy the API Key to be used in Relyance.
In the Relyance AI application:
- Login to your Relyance account.
- Navigate to the Settings (bottom-left corner).
- Select Integrations.
- Search and locate the LinkSquares integration card and click on it.
- Click on the Add Connection button on the top right
- Provide a meaningful name for the integration and click on the Add button
- In the Overview section, select the integration features you wish to enable for the integration, review the Scope and Permission, and Endpoint details and click on Continue. For more details, see Integration Features
- In the Connection section, provide the appropriate values and click on Continue,


- In the Authentication section, provide the API Key, Agreement Type and Agreement tags
- If the Data Inspection check box is checked from step 7, In the Data Inspection section, provide the appropriate values and click on Continue Minimum Confidence Level: This property adjusts the sensitivity of the Data Inspection feature. Lower likelihoods (e.g., unlikely) offer more coverage but may produce false positives, while higher sensitivity (e.g., very likely) provides greater accuracy but less coverage.


- Review the configuration summary from the Completion section and click on Finish.
- Confirm the integration Status reflects Connected

Authentication methods and fields
Pick one of these under Authentication Method on the connection wizard's Authentication step. This table is generated from the integration catalog, so it always matches what the form actually asks for.
| Method | Required | Optional |
|---|---|---|
| Custom | API Key (secret) |
Agreement Type, Agreement Tags |
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" "linksquares" {
vendor = "linksquares"
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.linksquares_api_key
}
secrets_wo_version = 1
}
scans = { "data-inspection" = { enabled = true } }
}