IDScan.net
Search Results for

    Show / Hide Table of Contents

    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

    Request Information

    .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

    Response Information

    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

    Response Formats

    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
            }
          ]
        }
      ]
    }
    
    In This Article
    • URL
    • HTTP Verbs
    • Request Information
      • URI (Body) Parameters
    • Response Information
    • Survey
    • Response
    • Response Formats
      • Default
      • Accept: application/json
    Back to top IDScan.net IDScan.net GitHub