Please help us help you and fill where relevant:
Your LimeSurvey version: url=https://itasmcda.limesurvey.net/surveyAdministration/listsurveys#modalSystemInformation]Version 5.6.4[/url
Own server or LimeSurvey hosting: Lime survey hosting
Survey theme/template:
==================
Hi,
I want to retrieve the survey responses (Json format or CSV file) corresponding to each participant.
1) The Export_responses method gives a base 64 encoded string. How to convert this response to Json format? Or is it possible to export to CSV file?
I am coding in Java. Below is the snippet from postman:
{
"method": "export_responses",
"params": [
"session_key",
"survey_id",
"json",
null,
"all",
null,
null
],
"id": 2
}
2) Also, when I am trying to get the question list from the survey, the response is not proper although the status is (200 OK).
Below is the method i am using to send request:
{
"method": "list_questions",
"params": [
"session_key",
"survey_id",
null,
null
],
"id": 2
}
Note:
api.limesurvey.org/classes/remotecontrol_handle.html
is used to implement methods in the above case.
Thanks in advance!