When following script is used, Survey Metadata and Embedded Data fields are not being included in the export...appreciate any tips to include this data.
# Step 1: Creating Data Export
download_request_url = base_url
download_request_payload = '{"format":"' + file_format + '","useLabels": true ' + ',"surveyId":"' + survey_id + '"}' # you can set useLabels:True to get responses in text format
#download_request_payload = '{"surveyMetadataIds": [] ' + ',"format":"' + file_format + ',"useLabels": true ' + ',"surveyId":"' + survey_id + '"}' # you can set useLabels:True to get responses in text format
print(download_request_payload )
download_request_response = requests.request("POST", download_request_url, data=download_request_payload, headers=headers)
progress_id = download_request_response.json()["result"]["id"]
print(download_request_response.text)
Python Script Data Export - How to include Embedded Data in the export

Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.