Appearance
SurveyMonkey
Create surveys, collect responses, and manage contacts via the SurveyMonkey API.
| Detail | Value |
|---|---|
| Category | Productivity |
| Base URL | https://api.surveymonkey.com/v3 |
| Authentication | Bearer Token |
| Endpoints | 5 |
| Connector key | surveymonkey |
Using SurveyMonkey in a workflow
- Go to Connections and click New Connection.
- Pick SurveyMonkey from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — the full list is below.
Available endpoints
| Endpoint | Summary |
|---|---|
GET /surveys | List surveys |
POST /surveys | Create a survey |
GET /surveys/{surveyId} | Get a survey |
GET /surveys/{surveyId}/responses/bulk | Get survey responses |
GET /surveys/{surveyId}/collectors | List collectors |
Each endpoint is documented in full below. Use the outline on the right to jump to one.
GET /surveys
List surveys
| Detail | Value |
|---|---|
| Operation ID | productivity.listSurveys |
| Method | GET |
| Path | /surveys |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your SurveyMonkey connection from the Connection dropdown.
- In the Operation dropdown, select
productivity.listSurveys. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream SurveyMonkey API reference.
POST /surveys
Create a survey
| Detail | Value |
|---|---|
| Operation ID | productivity.createSurvey |
| Method | POST |
| Path | /surveys |
Parameters
No parameters.
Request Body
| Field | Type |
|---|---|
title | string |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your SurveyMonkey connection from the Connection dropdown.
- In the Operation dropdown, select
productivity.createSurvey. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream SurveyMonkey API reference.
GET /surveys/{surveyId}
Get a survey
| Detail | Value |
|---|---|
| Operation ID | productivity.getSurvey |
| Method | GET |
| Path | /surveys/{surveyId} |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
surveyId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your SurveyMonkey connection from the Connection dropdown.
- In the Operation dropdown, select
productivity.getSurvey. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream SurveyMonkey API reference.
GET /surveys/{surveyId}/responses/bulk
Get survey responses
| Detail | Value |
|---|---|
| Operation ID | productivity.listResponses |
| Method | GET |
| Path | /surveys/{surveyId}/responses/bulk |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
surveyId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your SurveyMonkey connection from the Connection dropdown.
- In the Operation dropdown, select
productivity.listResponses. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream SurveyMonkey API reference.
GET /surveys/{surveyId}/collectors
List collectors
| Detail | Value |
|---|---|
| Operation ID | productivity.listCollectors |
| Method | GET |
| Path | /surveys/{surveyId}/collectors |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
surveyId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your SurveyMonkey connection from the Connection dropdown.
- In the Operation dropdown, select
productivity.listCollectors. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream SurveyMonkey API reference.