We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 586871e commit d8bf332Copy full SHA for d8bf332
ohmage.js
@@ -459,6 +459,16 @@
459
})
460
}
461
462
+ oh.response.read_custom = function(data){
463
+ //set defaults
464
+ data = data || {};
465
+ data.column_list = data.column_list || "urn:ohmage:special:all";
466
+ data.output_format = data.output_format || "json-rows";
467
+ data.survey_id_list = data.survey_id_list || "urn:ohmage:special:all";
468
+ data.user_list = data.user_list || "urn:ohmage:special:all";
469
+ return oh.call("/survey_response/read", data)
470
+ }
471
+
472
oh.response.delete = function(urn, survey_key){
473
return oh.call("/survey_response/delete", {
474
campaign_urn : urn,
0 commit comments