MessageBird
MessageBird is a cloud-based communications platform that powers communication between businesses and their customers. It does this using a variety of channels including SMS, WhatsApp, voice, live chat and more.
In order to integrate MessageBird with Relyance AI you will need a MessageBird API Key.
In MessageBird:
- Login to your MessageBird account.
- Click on Developers in the left-hand navigation menu.
- Click on API access on the resulting submenu.
- Click on + Add access key.
- In the resulting dialog box, provide a meaningful description and ensure you choose Live in the dropdown.
- Click Add.
- This will create a new Access key. Click Show key.
- Copy the API Key to be used in Relyance.


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 MessageBird integration card and click it to open its connections.
- Under Authentication Method, choose Custom.
- Paste the API Key into its respective field.

The Authentication step asks for:
- API Key: required; held as a secret.
- Click Authenticate.
- At this point, you should see the following result on the Vendor Integrations page:

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