Export All Surveys
URL
https://veriscanonline.com/Export/SurveysList?active={active}
HTTP Verbs
Both GET and POST can be used to make this request
.ASPXAUTH cookie must be sent with the request in order to be authenticated
URI (Body) Parameters
| Name |
Description |
Type |
Additional information |
| active |
|
bool? |
default true |
| Name |
Description |
Type |
Additional information |
| Surveys |
|
Collection of Survey |
|
Survey
| Name |
Description |
Type |
Additional information |
| IsActive |
|
bool |
|
| SurveyName |
|
bool |
|
| SurveyId |
|
int |
|
| Created |
|
DateTime |
|
| Questions |
|
Collection of Question |
|
Question
| Name |
Description |
Type |
Additional information |
| QuestionId |
|
int |
|
| QuestionText |
|
string |
|
| QuestionType |
|
string |
|
| Answers |
|
Collection of Answer |
|
Answer
| Name |
Description |
Type |
Additional information |
| AnswerId |
|
int |
|
| AnswerText |
|
string |
|
Default
<?xml version="1.0" encoding="utf-8"?>
<SurveysList xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Surveys>
<Survey SurveyId="1" Created="2016-01-26T06:53:00">
<SurveyName>survey</SurveyName>
<IsActive>true</IsActive>
<Questions>
<Question QuestionId="1">
<QuestionType>Multiple Choice Checkboxes</QuestionType>
<QuestionText>Multiple Choice Checkboxes? </QuestionText>
<Answers>
<Answer AnswerId="1">Multiple Choice Checkboxes 1</Answer>
<Answer AnswerId="2">Multiple Choice Checkboxes 2</Answer>
<Answer AnswerId="3">Multiple Choice Checkboxes 3</Answer>
</Answers>
</Question>
<Question QuestionId="9">
<QuestionType>Email</QuestionType>
<QuestionText>Email ?</QuestionText>
<Answers />
</Question>
<Question QuestionId="10">
<QuestionType>Dropdown</QuestionType>
<QuestionText>Dropdown ?</QuestionText>
<Answers>
<Answer AnswerId="17">Dropdown 1</Answer>
<Answer AnswerId="18">Dropdown 2</Answer>
<Answer AnswerId="19">Dropdown 3</Answer>
</Answers>
</Question>
</Questions>
</Survey>
</Surveys>
</SurveysList>
Accept: application/json
{
"Surveys": [
{
"SurveyId": 1,
"SurveyName": "survey",
"IsActive": true,
"Created": "/Date(1453812780000)/",
"Questions": [
{
"QuestionId": 1,
"QuestionType": "Multiple Choice Checkboxes",
"QuestionText": "Multiple Choice Checkboxes? ",
"Answers": [
{
"AnswerId": 1,
"AnswerText": "Multiple Choice Checkboxes 1"
},
{
"AnswerId": 2,
"AnswerText": "Multiple Choice Checkboxes 2"
},
{
"AnswerId": 3,
"AnswerText": "Multiple Choice Checkboxes 3"
}
]
},
{
"QuestionId": 9,
"QuestionType": "Email",
"QuestionText": "Email ?",
"Answers": []
},
{
"QuestionId": 10,
"QuestionType": "Dropdown",
"QuestionText": "Dropdown ?",
"Answers": [
{
"AnswerId": 17,
"AnswerText": "Dropdown 1"
},
{
"AnswerId": 18,
"AnswerText": "Dropdown 2"
},
{
"AnswerId": 19,
"AnswerText": "Dropdown 3"
}
]
}
]
}
]
}