GET v1/quizListSummaries/{id}
Retrieves a QuizListSummary by their id
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Unique Identifier of the QuizListSummary requested. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
The QuizListSummary, if it exists. Otherwise a 404 error.
QuizListSummary| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | string |
None. |
|
| Name | string |
None. |
|
| StartDateUtc | date |
None. |
|
| EndDateUtc | date |
None. |
|
| DateLastTakenUtc | date |
None. |
|
| IsGraded | boolean |
None. |
|
| IsPublished | boolean |
None. |
|
| PassingScore | decimal number |
None. |
|
| TotalParticipants | integer |
None. |
|
| PassedParticipants | integer |
None. |
|
| FailedParticipants | integer |
None. |
|
| AverageScore | decimal number |
None. |
Response Codes
- 200 OK: Requested QuizListSummary successfully returned.
- 401 Unauthorized:
- 404 NotFound: Requested QuizListSummary does not exist.
- 500 InternalServerError:
Response Formats
application/json, text/json
Sample:
{
"Id": "sample string 1",
"Name": "sample string 2",
"StartDateUtc": "2025-12-11T11:25:42.4803269-06:00",
"EndDateUtc": "2025-12-11T11:25:42.4803269-06:00",
"DateLastTakenUtc": "2025-12-11T11:25:42.4803269-06:00",
"IsGraded": true,
"IsPublished": true,
"PassingScore": 5.0,
"TotalParticipants": 6,
"PassedParticipants": 7,
"FailedParticipants": 8,
"AverageScore": 9.0
}
text/html
Sample:
{"Id":"sample string 1","Name":"sample string 2","StartDateUtc":"2025-12-11T11:25:42.4803269-06:00","EndDateUtc":"2025-12-11T11:25:42.4803269-06:00","DateLastTakenUtc":"2025-12-11T11:25:42.4803269-06:00","IsGraded":true,"IsPublished":true,"PassingScore":5.0,"TotalParticipants":6,"PassedParticipants":7,"FailedParticipants":8,"AverageScore":9.0}
application/xml, text/xml
Sample:
<QuizListSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ITAGroup.Questionnaire.Api.Contracts.v1.Models"> <AverageScore>9</AverageScore> <DateLastTakenUtc>2025-12-11T11:25:42.4803269-06:00</DateLastTakenUtc> <EndDateUtc>2025-12-11T11:25:42.4803269-06:00</EndDateUtc> <FailedParticipants>8</FailedParticipants> <Id>sample string 1</Id> <IsGraded>true</IsGraded> <IsPublished>true</IsPublished> <Name>sample string 2</Name> <PassedParticipants>7</PassedParticipants> <PassingScore>5</PassingScore> <StartDateUtc>2025-12-11T11:25:42.4803269-06:00</StartDateUtc> <TotalParticipants>6</TotalParticipants> </QuizListSummary>