If a question is Boolean, Singleselect, or multiselect, the answers value is the optionID for that value so that if a question is singleselect and the choices are
"options": [{
"optionId": "OID00000001",
"value": "APAC"
}, {
"optionId": "OID00000002",
"value": "EMEA"
Then in the POST Receive Questionnaire Response, the “answers” should be
{OID00000001}
and not
{APAC}
And
If a question is multiselect and the choices are countries, then the “answers”:
[“optionID#1”, “optionID#2”, “optionID#3”],
Is this correct?