I've been using the API to import responses into python with good success, but there seems to be a problem when using the parameter $sCompletionStatus.
This is my python code:
Code:
method = "export_responses"
params = OrderedDict([
("sSessionKey", api.session_key),
("iSurveyID", 977955),
("sDocumentType", 'json'),
("sCompletionStatus", 'complete'),
])
result64 = api.query(method=method, params=params)
it gives me this result:
Code:
{'status': 'Language code not found for this survey.'}
If I remove the sCompletionStatus parameter, everything works fine.
Any help would be appreciated.