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
1 answer

Tracking Survey Monkey responses in Rails

I am building a rails application that requires users to take a survey on Survey Monkey. How can I reliably correlate a user of my app to their Survey Monkey response, which I am pulling using the Survey Monkey API? Matching IP would work some of…
auman
  • 21
  • 3
0
votes
1 answer

Survey Monkey API getting Remote server returned an error : 403 forbidden and X-mashery error code: ERR_403_Service_Requires_SSLage

Here is my c# code. I am trying to pull data from my survey monkey for my company, have access key and token. Please I need your help/suggestions. using System; using System.Collections.Generic; using System.Linq; using System.Text; using…
0
votes
1 answer

surveymonkey API call return status code 3- Invalid request

EDIT: thanks for the suggestions. I changed the code to implement the json object instead of string and sent in the body This is what I tried to get details from survey monkey. I get the response code as 200 but however couldn't get the data I…
RJ24
  • 49
  • 3
  • 16
0
votes
1 answer

How to use redirect (url) method in a class library?

I am trying to build a web site which uses survey monkey API methods to show data, for that I am building a class library in which I will call one(only one from some controller) method which should do the oauth of the user.(I was successful with…
user3324848
  • 181
  • 1
  • 4
  • 17
0
votes
1 answer

Survey monkey API getting through Oauth as a User

I am trying to create a asp.net mvc 3 website which tracks the surveys which the user have created in the survey monkey . So, I am trying to access the API for which I need to pass through oauth of survey monkey.I am new to this concept.I have read…
user3324848
  • 181
  • 1
  • 4
  • 17
0
votes
1 answer

Cannot exchange authorization code for long-lived access token with SurveyMonkey API

I've got the initial half of an OAuth flow working with the SurveyMonkey API, but when I try to exchange the short-lived authorization code for a long-lived OAuth access token, I get an HTTP 400 response. This is step 3 of the SurveyMonkey OAuth…
Matt Ball
  • 354,903
  • 100
  • 647
  • 710
0
votes
1 answer

What are the limits on response sizes?

I see that the get_responses call requires a list of respondent_ids. There is no get_responses method to return all respondents. If I pass one respondent ID I can get their responses, and that can be a fair chunk of data for a complex survey. For a…
sysmod
  • 463
  • 3
  • 11
0
votes
0 answers

get_survey_details does not report all details

I have just downloaded get_survey_details for a test survey. https://www.surveymonkey.com/s/STB97HW The following eleven (numbered below) items that are specified in the setup are not present in the response. How can I get them? A) Multiple Choice…
sysmod
  • 463
  • 3
  • 11
0
votes
1 answer

SurveyMonkey API - Closed Survey

I'd be grateful for some help with a couple of questions on the Survey Monkey API; Using the API console, I've entered a valid survey number and back got a list of collectors. Is there also an API call to get information about each of the…
0
votes
1 answer

Does surveymonkey api return the unique ID associated with their unique id specifications?

Can anyone tell me if they are know for certain whether or not survey monkey's api has the ability to return the unique ID associated with their designated unique id…
mt programmer
  • 139
  • 1
  • 8
0
votes
1 answer

Alternative ways to authorize use of surveymonkey account?

After I redirect to the OAuth dialog page, is there a way to authorize use of my account programmatically? Right now, once I enter my username and password, I can get the authorization code and the rest of my app works perfectly, but I want it to…
0
votes
1 answer

Unexpected json result while calling the surveymonkey api

When calling the surveymonkey api I'm using {\"survey_id\":\"47625442\"," +"\"fields[]\":\"['url']\"}" as the json data the server needs to complete my request. while it is returning the data it is required it is not returning the additional URL i…
0
votes
0 answers

No Json payload returned with api request

While posting to the surveymonkey api im expecting a JSON payload but whenever I send it i get a status "3" which on their documentation is an Invalid Request I'm unsure what im supposed to be giving to the api to get the data i need back. Am i…
0
votes
0 answers

JSON error when requesting a web api

When trying to call the survey list from survey monkey i get the error {"status": 3, "errmsg": "No JSON object could be decoded: line 1 column 0 (char 0)"} when using the code below. I'm unsure why this request isn't working and was wondering what…
0
votes
1 answer

Getting error "invalid uri" when using http://localhost

I'm working with my first api here and I'm trying to get through the Oauth authorization so i can start working with the api. When trying to get the short life access key with the following code surveymonkey is telling me I have an invalid uri. The…