FullStory
FullStory is a web-based customer experience data application that captures customer experience data in one powerful and easy-to-use digital intelligence system.
It enables users to track and monitor each customer activity; from clicks to page transitions, everything is indexed automatically.
In order to integrate FullStory with Relyance AI you will need API Key and Application User ID.
In FullStory:
- Obtain a Unique User ID (uid) with which to perform the integration.
i. Details of the FullStory uid can be found in the FullStory documentation (https://help.fullstory.com/hc/en-us/articles/360020828113-FS-identify-Identifying-users)). ii. FullStory APIs require this uid in order to query for data but these IDs themselves are not available via API. iii. You may need to contact a FullStory administrator to retrieve this ID. iv. This ID will be your Application User ID. 2. Login to your Fullstory account and from the control dashboard, click API Keys under the Integrations heading.

- Click Create Key.
- Enter a name for the integration key, select Standard for the key type, and click Save API Key.

- Copy the resulting API Key to be used in Relyance AI.
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 FullStory integration card and click it to open its connections.
- Under Authentication Method, choose Custom.
- Paste the API Key and Application User Id into their respective fields.

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

- Congratulations, you are now connected to FullStory.
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" "fullstory" {
vendor = "fullstory"
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.fullstory_api_key
}
secrets_wo_version = 1
}
scans = { "data-inspection" = { enabled = true } }
}