所以我一直在研究surveymonkey v3 api documentation来格式化问题类型。我想要做的是创建一个具有“其他”选项的多项选择题,如果选择该选项,则具有用户可以填写的文本字段以使其更具体。有没有办法用api完成这个?
答案 0 :(得分:0)
在创建/更新问题时,您应该能够这样做。
示例:
POST /v3/surveys/<id>/pages/<id>/questions
{
"family": "single_choice",
"subtype": "vertical",
"answers": {
"other": [{
"text": "Other (please specify)",
"is_answer_choice": true,
"num_lines": 1,
"num_chars": 50
}],
"choices": [
{
"text": "Apples"
},
{
"text": "Oranges"
},
{
"text": "Bananas"
}
]
},
"headings": [
{
"heading": "What is your favourite fruit?"
}
]
}
目前似乎不接受此is_answer_choice
字段。这是一个错误,您可以watch the docs获得更新通知,或稍后再试。
编辑:此方法现在应该可以使用,试一试,如果它能解决您的问题,请告诉我!