GET v1/participantQuizList/{id}/quizzes/{quizId}
Retrieves a ParticipantQuizList by the Participant Id and Quiz Id
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Unique Identifier of the ParticipantQuizList requested. |
string |
Required |
| quizId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
The ParticipantQuizList, if it exists. Otherwise a 404 error.
ParticipantQuizList| Name | Description | Type | Additional information |
|---|---|---|---|
| QuizName | string |
None. |
|
| Description | string |
None. |
|
| LastStartDateUtc | date |
None. |
|
| EndDateUtc | date |
None. |
|
| CompletionTime | string |
None. |
|
| LastCompletionDateUtc | date |
None. |
|
| LastPointsCorrect | integer |
None. |
|
| LastScore | decimal number |
None. |
|
| LastIsPassed | boolean |
None. |
|
| LastPointsPossible | integer |
None. |
|
| LastCompletedTakeKey | globally unique identifier |
None. |
|
| StartedTakeKey | globally unique identifier |
None. |
|
| TakeAvailable | boolean |
None. |
|
| QuizId | string |
None. |
|
| IsGraded | boolean |
None. |
|
| CanShowResultsSummary | boolean |
None. |
Response Codes
- 200 OK: Requested ParticipantQuizList successfully returned.
- 401 Unauthorized:
- 404 NotFound: Requested ParticipantQuizList does not exist.
- 500 InternalServerError:
Response Formats
application/json, text/json
Sample:
{
"QuizName": "sample string 1",
"Description": "sample string 2",
"LastStartDateUtc": "2026-08-30T03:44:33.3581769-05:00",
"EndDateUtc": "2026-08-30T03:44:33.3581769-05:00",
"CompletionTime": "sample string 3",
"LastCompletionDateUtc": "2026-08-30T03:44:33.3581769-05:00",
"LastPointsCorrect": 1,
"LastScore": 1.0,
"LastIsPassed": true,
"LastPointsPossible": 1,
"LastCompletedTakeKey": "e0146a48-e8b6-454e-a469-da6918060f79",
"StartedTakeKey": "5029bbd1-25fd-4f9e-a105-484acb2060b1",
"TakeAvailable": true,
"QuizId": "sample string 5",
"IsGraded": true,
"CanShowResultsSummary": true
}
text/html
Sample:
{"QuizName":"sample string 1","Description":"sample string 2","LastStartDateUtc":"2026-08-30T03:44:33.3581769-05:00","EndDateUtc":"2026-08-30T03:44:33.3581769-05:00","CompletionTime":"sample string 3","LastCompletionDateUtc":"2026-08-30T03:44:33.3581769-05:00","LastPointsCorrect":1,"LastScore":1.0,"LastIsPassed":true,"LastPointsPossible":1,"LastCompletedTakeKey":"e0146a48-e8b6-454e-a469-da6918060f79","StartedTakeKey":"5029bbd1-25fd-4f9e-a105-484acb2060b1","TakeAvailable":true,"QuizId":"sample string 5","IsGraded":true,"CanShowResultsSummary":true}
application/xml, text/xml
Sample:
<ParticipantQuizList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ITAGroup.Questionnaire.Api.Contracts.v1.Models"> <CanShowResultsSummary>true</CanShowResultsSummary> <CompletionTime>sample string 3</CompletionTime> <Description>sample string 2</Description> <EndDateUtc>2026-08-30T03:44:33.3581769-05:00</EndDateUtc> <IsGraded>true</IsGraded> <LastCompletedTakeKey>e0146a48-e8b6-454e-a469-da6918060f79</LastCompletedTakeKey> <LastCompletionDateUtc>2026-08-30T03:44:33.3581769-05:00</LastCompletionDateUtc> <LastIsPassed>true</LastIsPassed> <LastPointsCorrect>1</LastPointsCorrect> <LastPointsPossible>1</LastPointsPossible> <LastScore>1</LastScore> <LastStartDateUtc>2026-08-30T03:44:33.3581769-05:00</LastStartDateUtc> <QuizId>sample string 5</QuizId> <QuizName>sample string 1</QuizName> <StartedTakeKey>5029bbd1-25fd-4f9e-a105-484acb2060b1</StartedTakeKey> <TakeAvailable>true</TakeAvailable> </ParticipantQuizList>