Hi,
I am trying to pass Base64 encoded information from a baseline survey to a follow-up survey using email distributions and individual links. These indivividual links should include both the respective code of the enumerator and the respondent. These are collected in two survey questions and saved as embedded data.
As explained here https://www.qualtrics.com/support/survey-platform/survey-module/survey-flow/standard-elements/passing-information-through-query-strings/#QEED, I created the following JSON code to create my URL parameter:
{ "CodeEnumerator": "${e://Field/CodeEnumerator}", "CodeClient": "${e://Field/CodeClient}" }
Note that in contrast to the example provided by the support page, I use piped in information.
In the next step, I encode the JSOn code and add it to the survey string as follows:
${l://SurveyURL}&Q_EED=eyAiQ29kZUNvYWNoIjogIiR7ZTovL0ZpZWxkL0NvZGVDb2FjaH0iLCAiQ29kZUtsaWVudCI6ICR7ZTovL0ZpZWxkL0NvZGVLbGllbnR9fQ==
However, for some reason, the link only passes the information of “CodeEnumerator” and not the information of “CodeClient”.
So my question is: How can I pass two pieces of encoded information from a baseline survey to a follow-up survey using email distributions and individual links?