# AtData

![Image 1 of 1](https://assets.relyanceuat.xyz/images/docs/34535598461453/34535582167821.png)
AtData provides tools to gain insights into the holder of an email address. In today's digital landscape, the email address plays a pivotal role in identifying individuals online, enabling precise and relevant approaches. AtData's email-focused database facilitates efficient use of digital channels to enhance customer interactions, offering valuable information about their activity.

AtData 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:

1. Login to your Relyance account.
2. Navigate to the **Settings** (bottom-left corner).
3. Select **Integrations**.
4. Search and locate the **AtData** integration card and click on it.
5. Click on the **Add Connection** button on the top right
6. Provide a meaningful name for the integration and click on the **Add** button
7. 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](/docs/introduction-to-relyance-ai/integration-features/)
8. In the **Connection** section, provide the appropriate values and click on **Continue**,

![Screenshot](https://assets.relyanceuat.xyz/images/docs/34535598461453/34535598459533.png)

![Screenshot](https://assets.relyanceuat.xyz/images/docs/34535598461453/34535598459789.png)

9. In the Authentication section, select Static and click on continue
10. Review the configuration summary from the Completion section and click on Finish.
11. Confirm the integration status reflects as Connected

![Screenshot](https://assets.relyanceuat.xyz/images/docs/34535598461453/34535598460301.png)

![Screenshot](https://assets.relyanceuat.xyz/images/docs/34535598461453/34535582171661.png)

<!-- terraform-examples:begin (generated from the integration catalog; do not hand-edit) -->

## Manage this integration with Terraform

Connections for this integration can be managed as code with the [Relyance Terraform provider](https://registry.terraform.io/providers/Relyance/relyance/latest). 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`.

```hcl
resource "relyance_integration_connection" "atdata" {
  vendor = "atdata"
  name   = "<your connection name>"

  auth = {
    method = "no-credentials"
    params = {
      data_storage_location = "us"
    }
  }

  scans = { "property-inspection" = { enabled = true } }
}
```

<!-- terraform-examples:end -->
