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": "2025-12-11T11:27:19.4786887-06:00",
"EndDateUtc": "2025-12-11T11:27:19.4786887-06:00",
"CompletionTime": "sample string 3",
"LastCompletionDateUtc": "2025-12-11T11:27:19.4786887-06:00",
"LastPointsCorrect": 1,
"LastScore": 1.0,
"LastIsPassed": true,
"LastPointsPossible": 1,
"LastCompletedTakeKey": "b33eb691-2766-445c-83fd-2c7cc9305660",
"StartedTakeKey": "6c712844-d11b-4b04-b88f-9b185e952ae0",
"TakeAvailable": true,
"QuizId": "sample string 5",
"IsGraded": true,
"CanShowResultsSummary": true
}
text/html
Sample:
{"QuizName":"sample string 1","Description":"sample string 2","LastStartDateUtc":"2025-12-11T11:27:19.4786887-06:00","EndDateUtc":"2025-12-11T11:27:19.4786887-06:00","CompletionTime":"sample string 3","LastCompletionDateUtc":"2025-12-11T11:27:19.4786887-06:00","LastPointsCorrect":1,"LastScore":1.0,"LastIsPassed":true,"LastPointsPossible":1,"LastCompletedTakeKey":"b33eb691-2766-445c-83fd-2c7cc9305660","StartedTakeKey":"6c712844-d11b-4b04-b88f-9b185e952ae0","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>2025-12-11T11:27:19.4786887-06:00</EndDateUtc> <IsGraded>true</IsGraded> <LastCompletedTakeKey>b33eb691-2766-445c-83fd-2c7cc9305660</LastCompletedTakeKey> <LastCompletionDateUtc>2025-12-11T11:27:19.4786887-06:00</LastCompletionDateUtc> <LastIsPassed>true</LastIsPassed> <LastPointsCorrect>1</LastPointsCorrect> <LastPointsPossible>1</LastPointsPossible> <LastScore>1</LastScore> <LastStartDateUtc>2025-12-11T11:27:19.4786887-06:00</LastStartDateUtc> <QuizId>sample string 5</QuizId> <QuizName>sample string 1</QuizName> <StartedTakeKey>6c712844-d11b-4b04-b88f-9b185e952ae0</StartedTakeKey> <TakeAvailable>true</TakeAvailable> </ParticipantQuizList>