SurveyMonkey
SurveyMonkey is a cloud-based survey software tool that helps users create, send and analyze surveys. Organizations can email surveys to respondents and post them on their websites and/or social media profiles to increase response rate.
In order to integrate SurveyMonkey with Relyance AI you will need a SurveyMonkey Client ID and Client Secret.
In SurveyMonkey:
- Login to your SurveyMonkey account.
- Scroll to the bottom of the page and click on the Developers link.

- Click on My Apps tab at the top.
- Click on Add a New App.
- Give your app a nickname and an app type. It doesn’t really matter but you can select private.

This app will be active as a draft for 90 days. After that you will need to create a new one (unless you deploy it and have an actual private SurveyMonkey app). 6. Click the Create App button. 7. Once you create it you should end up on this page:

- Copy the Client ID and Client Secret values from this page to be used in Relyance AI.
- Click on the Settings tab on this page.
- In the section labeled OAuth Redirect URL paste this value: https://root.relyance.ai/api/oauth2
- Click Submit Changes to save the redirect info.
- Scroll down to the Scopes section and update the View Surveys, View Collectors, View Users, View Contacts and View Groups scopes to Required.

- Click Update Scopes to save your scope changes.
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 SurveyMonkey integration card and click it to open its connections.
- Under Authentication Method, choose OAuth2 / App Token.
- Paste the Client ID and Client Secret into their respective fields.

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

- Congratulations, you are now connected to SurveyMonkey.
If the connection reports Connected but returns nothing
These are the ways this integration comes back empty without reporting an error. Generated from the integration catalog, so it tracks what the connection actually asks for.
- A feature you enabled returns nothing. Some scopes belong to a feature rather than to the connection: Data subject requests needs
users_read,contacts_read,contacts_write,responses_read. Turning the feature on after the connection exists does not widen the grant it already holds, so re-authenticate the connection. - Authorised, then empty. The connection carries an authorisation, not a password: it stops returning data if the account that granted it loses access, its own permissions narrow, or the grant is revoked at the vendor. None of that reports an error here -- the connection keeps its last status until the next scan.
- A credential rotated at the vendor is not picked up here. Client Secret is stored when you save the connection, so regenerating the value at the vendor breaks the next scan until it is re-pasted here. Recording the expiry on the connection means Relyance warns you before it lapses.
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.
The OAuth (browser authorization) method uses a browser authorization flow, so the connection is created in the Relyance app. Manage it in Terraform afterwards by importing it (terraform import relyance_integration_connection.example surveymonkey/<connection_id>) or reading it with the relyance_integration_connection data source.