Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions lib/surveymonkey/SurveyMonkeyAPI_v3.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,14 +93,24 @@ SurveyMonkeyAPI_v3.prototype.execute = function (type, resource, method, params,

/**
* Retrieves a paged list of respondents for a given survey and optionally collector bulk
*
*
*
*
*/
SurveyMonkeyAPI_v3.prototype.getRespondentListBulk = function (params, callback) {
if (typeof params === 'function') callback = params, params = {};
this.execute('GET', 'surveys', 'responses_bulk', params, callback);
};

/**
* Retrieves a paged list of respondents for a given collector and optionally collector bulk
*
*
*/
SurveyMonkeyAPI_v3.prototype.getRespondentListByCollectorBulk = function (params, callback) {
if (typeof params === 'function') callback = params, params = {};
this.execute('GET', 'collectors', 'responses_bulk', params, callback);
};

/**
* Retrieves a paged list of respondents for a given survey and optionally collector
*
Expand Down