2016-06-29 79 views

回答

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潛在地得到更新通知,或稍後再試。

編輯:此方法現在應該工作,試試看,讓我知道它是否能解決您的問題!

相關問題