SurveyMonkey integration
SurveyMonkey is an online survey development platform that enables users to…
- Provider
- survey_monkey
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 22 available
Quick start
Call SurveyMonkey from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to SurveyMonkey's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"SURVEY_MONKEY_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own SurveyMonkey API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
22 actions exposed via the
SurveyMonkey integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
SURVEY_MONKEY_CREATE_BULK_CONTACTS -
SURVEY_MONKEY_CREATE_CONTACT -
SURVEY_MONKEY_CREATE_CONTACT_LIST -
SURVEY_MONKEY_CREATE_SURVEY -
SURVEY_MONKEY_CREATE_SURVEY_FOLDER -
SURVEY_MONKEY_DELETE_SURVEY -
SURVEY_MONKEY_GET_BULK_CONTACTS -
SURVEY_MONKEY_GET_COLLECTORS -
SURVEY_MONKEY_GET_CONTACTS -
SURVEY_MONKEY_GET_CURRENT_USER -
SURVEY_MONKEY_GET_GROUPS -
SURVEY_MONKEY_GET_RESPONSES
Show all 22 actions
-
SURVEY_MONKEY_GET_SURVEY_DETAILS -
SURVEY_MONKEY_GET_SURVEY_DETAILS2 -
SURVEY_MONKEY_GET_SURVEY_RESPONSES_BULK -
SURVEY_MONKEY_GET_SURVEYS -
SURVEY_MONKEY_GET_SURVEY_TRENDS -
SURVEY_MONKEY_LIST_AVAILABLE_LANGUAGES -
SURVEY_MONKEY_LIST_BENCHMARK_BUNDLES -
SURVEY_MONKEY_LIST_CONTACT_FIELDS -
SURVEY_MONKEY_LIST_CONTACT_LISTS -
SURVEY_MONKEY_LIST_WEBHOOKS
Build with SurveyMonkey
Open OverSkill, describe what you want to build, and reference SurveyMonkey in your prompt — the AI will wire up the integration automatically.