CoderPad
CoderPad is a platform for doing technical phone screens or remote interviews in the browser. It's a technical interview platform to help candidates demonstrate their skills through technical assessments, take-home projects and live collaborative coding.
In order to integrate CoderPad with Relyance AI you will first need to obtain a CoderPad API Token.
In CoderPad:
- Login to your CoderPad account.
- Click the dropdown arrow beside your account name in the upper right corner of the screen, then click My Settings.
- In the Settings section, locate and temporarily copy the API Key value for later use in the Relyance AI configuration steps.


In Relyance AI:
- 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 CoderPad integration card and click it to open its connections.
- Under Authentication Method, choose Custom.
- Paste the API Key obtained from the previous CoderPad steps above into the CoderPad API Token field.

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

- Congratulations, you are now connected to CoderPad.
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" "coderpad" {
vendor = "coderpad"
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.coderpad_api_key
}
secrets_wo_version = 1
}
scans = { "property-inspection" = { enabled = true } }
}