getResponses(filter, onSuccess)

Description

This function will help you to fetch all the responses from the feedback system. You can also filter out the average response value by passing the filter in the function. Note: This function is an async function and doesn't return any value. The value can be fetched through onSuccess function as below
getResponses(filter, function(value) {
//You will get the value here, so write your code here
})


Example:

  • getResponses({}, function(value) {})
  • getResponses({segmentCode: [‘S1’, ‘S2’]}, function(value) {})
  • getResponses({product: [‘p1’, ‘p2’]}, function(value) {})
  • getResponses({productGroup: [‘pg1’, ‘pg2’]}, function(value) {})
  • getResponses({isCompleted: ‘true’}, function(value) {})
  • getResponses( {questionID: [123, 234,345,456]}, function(value) {})
  • getResponses({customVariables: [{‘custom1’ :[‘v1’, ‘v2’]}, {‘customMapped40’: [‘v3’, ‘v4’]}]}, function(value) {})
  • getResponses({dateRange: {start : ‘10/20/2021’, end : ‘04/30/2021’}}, function(value) {})


Refer to Filters for more information