Reputation: 418
Hey I am creating a webapplication that process answers from a Qualtrics survey that I created. Is there a way (such as AJAX request) that automatically get the answers from my Qualtrics form through javascript? Thanks!
Upvotes: 0
Views: 817
Reputation: 5004
Qualtrics provides a REST API: http://www.qualtrics.com/university/researchsuite/developer-tools/api-integration/qualtrics-rest-api/
You would use the API command getLegacyResponseData to get response data. You can use AJAX to call the API.
Upvotes: 1