...
The data used in the following explanations comes from this API call
Code Block |
---|
https://eusurvey-fra-mapleapi.conceptsaucecsiolabs.iome/?projectid=d9a9f2174963d1e1-0c9a0776-498e48c6-b4616690-e96976a92f3683a76a7c7b5f&pageid=01ae82e89178c8b3-d3541dc1-4c76444d-8abc65c0-56614fefdde18e5e142b7e50&respondentid=davidtesthn12345 |
This API call returns data on a Page basis. Each page may have multiple questions represented in the questions array
...
It typically has the following fields
Code Block | ||
---|---|---|
| ||
{
questionID: "2d6cdef9-d707-4e94-95cb-17eb89ee1944", // unique questionID
questionTitle: "q2", // question human title
duration: "1970-01-01T00:00:22.253Z", // how long respondent took for this question
endTime: "2016-07-31T08:22:37.981Z", // end time for this question
startTime: "2016-07-31T08:22:15.728Z", // time respondent starts to see question
eventStream: [], // raw events
qResponseData: {} // sections of event data — exact contents vary by question type and response actions
}
| ||
Paste code macro | ||
| ||
{ questionID: "2d6cdef9-d707-4e94-95cb-17eb89ee1944", // unique questionID questionTitle: "q2", // question human title duration: "1970-01-01T00:00:22.253Z", // how long respondent took for this question endTime: "2016-07-31T08:22:37.981Z", // end time for this question startTime: "2016-07-31T08:22:15.728Z", // time respondent starts to see question eventStream: [], // raw events qResponseData: {} // sections of event data — exact contents vary by question type and response actions } |
Time data
All time fields are named as follows and occur multiple times in the data for different sections and events recorded.Â
...