For a given survey, how do you determine its survey_id
for use with the SurveyMonkey API?
A list of all IDs is returned by the API method get_survey_list
, and you could subsequently call get_survey_details
on each survey to determine which one is the intended one, but that seems needlessly complicated. There has to be a way to get a survey's ID from the My Surveys page, right?
Edit:
Whoops, get_survey_details
isn't actually necessary, since get_survey_list
can take a fields
parameter that includes the survey's title.