How to Get Data From Qualtrics

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

Answers (1)

T. Gibbons
T. Gibbons

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

Related Questions