Export a Histoy Log Response with History Log ID
URL
https://veriscanonline.com/Export/HistoryLogResponses?historyId={historyId}
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 |
historyId |
This field is the History Log ID, which differs from the History ID |
int |
required |
Name |
Description |
Type |
Additional information |
HistoryLogId |
|
int |
|
FirstName |
|
string |
|
LastName |
|
string |
|
MiddleName |
|
string |
|
Scanned |
|
DateTime |
|
Surveys |
|
Collection of Survey |
|
Survey
Name |
Description |
Type |
Additional information |
SurveyId |
|
int |
|
SurveyName |
|
string |
|
IsActive |
|
bool |
|
Responses |
|
Collection of Response |
|
Response
Name |
Description |
Type |
Additional information |
QuestionId |
|
int |
|
QuestionText |
|
string |
|
TextResponse |
|
bool |
|
Default
<?xml version="1.0" encoding="utf-8"?>
<HistoryLogResponses xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" HistoryLogId="4751803" Scanned="2016-04-07T13:58:10.05" FirstName="FRED" MiddleName="GARCIA" LastName="GARCIA">
<Surveys>
<Survey SurveyId="1">
<SurveyName>survey</SurveyName>
<IsActive>true</IsActive>
<Responses>
<Response QuestionId="1">
<QuestionText>Multiple Choice Checkboxes? </QuestionText>
<TextResponse>Multiple Choice Checkboxes 3</TextResponse>
</Response>
<Response QuestionId="9">
<QuestionText>Email ?</QuestionText>
</Response>
<Response QuestionId="10">
<QuestionText>Dropdown ?</QuestionText>
</Response>
<Response QuestionId="11">
<QuestionText>Multiple Choice Radio ?</QuestionText>
</Response>
<Response QuestionId="12">
<QuestionText>Date ?</QuestionText>
</Response>
<Response QuestionId="13">
<QuestionText>Textbox ?</QuestionText>
</Response>
<Response QuestionId="14">
<QuestionText>Textarea ?</QuestionText>
</Response>
</Responses>
</Survey>
</Surveys>
</HistoryLogResponses>
Accept: application/json
{
"HistoryLogId": 4751803,
"Scanned": "/Date(1460055490050)/",
"FirstName": "FRED",
"MiddleName": "GARCIA",
"LastName": "GARCIA",
"Surveys": [
{
"SurveyId": 1,
"SurveyName": "survey",
"IsActive": true,
"Responses": [
{
"QuestionId": 1,
"QuestionText": "Multiple Choice Checkboxes? ",
"TextResponse": "Multiple Choice Checkboxes 3"
},
{
"QuestionId": 9,
"QuestionText": "Email ?",
"TextResponse": null
},
{
"QuestionId": 10,
"QuestionText": "Dropdown ?",
"TextResponse": null
},
{
"QuestionId": 11,
"QuestionText": "Multiple Choice Radio ?",
"TextResponse": null
},
{
"QuestionId": 12,
"QuestionText": "Date ?",
"TextResponse": null
},
{
"QuestionId": 13,
"QuestionText": "Textbox ?",
"TextResponse": null
},
{
"QuestionId": 14,
"QuestionText": "Textarea ?",
"TextResponse": null
}
]
}
]
}