Search code examples
web-servicesqualtrics

Piped text for Webservice params in qualtrics


My requirement is to get the email ID from the user in qualtrics and to invoke a webservice with email as a param at the end of the registration . The webservice will register the user in my site. Actually i am not getting how to get the piped text code for the email field(I created as a question for email). Also i couldn't see the option of GET/POST in the qualtrics webservice. Can anyone please help me how to generate a piped text code for the email question?


Solution

  • Under web service parameters you would have:

    email = ${pipedTextField}
    

    Where pipedTextField would be something like q://QID1/ChoiceTextEntryValue if it was a text question. An easy way to get the correct pipedTextField value is to create a temporary embedded data field and use the drop down to pick the piped text. Then copy that to your web service parameter field.

    There is no GET/POST option. All web service calls are GET.

    P.S. If my answer to your previous question about Qualtrics web service calls was helpful, please accept it.