Questions tagged [surveymonkey]

SurveyMonkey is an online survey service

SurveyMonkey is a a software as a service (SaaS) company, founded in 1999 by Ryan Finley, that provides an online survey tool with a variety of service plans.

SurveyMonkey provides an API for programmatic survey creation and data retrieval.

See also

395 questions
0
votes
2 answers

Passing parameters with urlencodeing to a website for authorization

So I've tried this code to pass my id, key and other info to the website to start Oauth approval but it isn't getting them. I'm fairly new to c# and Oauth so im not sure what to do. string url = "https://api.surveymonkey.net/oauth/authorize"; …
0
votes
2 answers

Posting a part of surveymonkey survey to other database

I have a specific need regarding Surveymonkey engine. I would like to build a survey including a bunch of sensitive questions (address, telephone etc.). According to legal regulations we cannot store those datas in Surveymonkey database, but in a…
0
votes
4 answers

"Object reference not set to an instance of an object" when looping through deserialized class

EDIT: turns out I can deserialize just fine, the problem is actually when I try to loop through to grab the questions. Same error though "Object reference not set to an instance of an object". I am only editing this because I can't delete the post…
swegs
  • 55
  • 8
0
votes
1 answer

get_collector_list request in java

trying the request by passing the surveyID as a parameter from java using following input string. Getting following error {"status": 3, "errmsg": "No JSON object could be decoded: line 1 column 0 (char 0)"} String input ="{\"survey_id\":…
0
votes
1 answer

Node Survey Monkey Polling

I am trying to poll respondents that have changed answers or get new respondents but this code appears to pull in all of the data regardless. Have I got the wrong data key? The polling guide suggests adding start_modified_date but that doesn't work.…
georgephillips
  • 3,540
  • 4
  • 23
  • 30
0
votes
2 answers

MS Access or MSSQL query to combine multiple rows of data based on common value in a single column (data exported from survey monkey)

I have the following data and would like to find a way using either MS Access SQL or MS SQL Server to create a query to consolidate everything to a single line. RespondentID Name EID Phone Why How …
0
votes
1 answer

SurveyMonkey API Console Not Working

The SurveyMonkey API Console was working for me until a day or two ago. Whenever I click on AUTHORIZE on the console with my API Key and username, it opens up a new window with this reply The authorization request failed: Missing required…
0
votes
1 answer

Can Only Access Results for one of my surveys

I've created a web application that using SurveyMonkey API and gathers the responses to a bunch of surveys I've created with SurveyMonkey. It's a BASIC account, however when I call the method get_responses on a survey it only works for one of my…
0
votes
1 answer

surveymonkey api authorization issue

We are setting up a website, where users will fill out and submit answers to a surveymonkey survey. After the user submits his survey answers, we will access that data through an API call and generate a report for the user based on that…
0
votes
1 answer

Passing a variable to a JSON web service

I am accessing the class from the code api_service.py, which can be found here. When I call the first function, I have no problem, because no variables are passed: from api_service import ApiService import json def main(): api_key = *removed* …
philshem
  • 24,761
  • 8
  • 61
  • 127
-1
votes
2 answers

Automatically Find&Replace

I work with surveymonkey and when someone doesn't answer my question, my cell is filled with "Not Answered". The goal is to merge multiple rows into one. Possible solutions are: I need a script to automatically find and replace. Which will replace…
-1
votes
1 answer

Does Survey Monkey Have any API to Save User Information, I want to save visitor name and email when he start the survey

I want to save visitor information into survey monkey dashboard for analytics purpose. Not sure how I can do this. We get the user information from FB like user name and email, when user click on start the survey button I want to save this…
Prabhat
  • 27
  • 9
-1
votes
1 answer

SurveyMonkey api copy message raises error

We are using the SurveyMonkey api to generate survey emails and are having issues creating/copying a custom message. We can create a default message easy enough but we want to use a custom message. We tried creating the message and copying the HTML…
-1
votes
1 answer

this dictionary requires a model item of type 'System.Collections.Generic.IEnumerable

Here is my model class public class SurveyModel { public SurveyModel() { this.Name = string.Empty; this.Url = string.Empty; } [Key] public string Name { get; set; } public int? ResponseCount { get; set; } …
-1
votes
1 answer

How to get survey response as PDF through API in SurveyMonkey?

I have gone through the API documentation of Survey Monkey but i am unable to find any option for retrieving the PDF associated to the response through the API.I need to import it in salesforce. Is there any work around for that?
coderdecoder
  • 11
  • 1
  • 4
1 2 3
26
27