-
Notifications
You must be signed in to change notification settings - Fork 5
admin get_question_types.json
Timothy Duffy edited this page Mar 8, 2015
·
1 revision
###admin/get_question_types.json###
All admin api's require a token to be passed in. See get_access_token.json for more information.
admin/get_question_types.json?token=238236fa-0e1a-499c-8051-c46e2f416387
This command returns the available languages the system supports. It is a HTTP GET request.
A response looks like:
{
"question_types": [
{
"question_type_text": "free_text",
"question_type_id": 1,
"question_type_description": "Free form text responce."
},
{
"question_type_text": "multiple_choice",
"question_type_id": 2,
"question_type_description": "Allows for up to ten multiple choice options"
}
],
"success": true
}