Select-SurveyMonkey Cmdlet
Searches SurveyMonkey data.
Syntax
Select-SurveyMonkey [parameters]
Remarks
The Select-SurveyMonkey cmdlet allows you to use a syntax similar to SQL SELECT statements to search SurveyMonkey data.
$conn = Connect-SurveyMonkey -OAuthClientId 'abc123' -OAuthClientSecret 'def456' -CallbackURL 'http://localhost:33333'
Select-SurveyMonkey -Connection $conn -Table "MySurvey_Responses" -Columns @("RespondentId","ChoiceId") -Where "ChoiceText='blue'"