GET v1/participantQuizList/{id}/quizzes/{quizId}

Retrieves a ParticipantQuizList by the Participant Id and Quiz Id

Request Information

URI Parameters

NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional 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:09:00.7778909-06:00",
  "EndDateUtc": "2025-12-11T11:09:00.7778909-06:00",
  "CompletionTime": "sample string 3",
  "LastCompletionDateUtc": "2025-12-11T11:09:00.7778909-06:00",
  "LastPointsCorrect": 1,
  "LastScore": 1.0,
  "LastIsPassed": true,
  "LastPointsPossible": 1,
  "LastCompletedTakeKey": "3f70a39c-7358-48bd-8eaa-775f86ae76b1",
  "StartedTakeKey": "793a5084-f01f-4e57-94b1-d8db99320623",
  "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:09:00.7778909-06:00","EndDateUtc":"2025-12-11T11:09:00.7778909-06:00","CompletionTime":"sample string 3","LastCompletionDateUtc":"2025-12-11T11:09:00.7778909-06:00","LastPointsCorrect":1,"LastScore":1.0,"LastIsPassed":true,"LastPointsPossible":1,"LastCompletedTakeKey":"3f70a39c-7358-48bd-8eaa-775f86ae76b1","StartedTakeKey":"793a5084-f01f-4e57-94b1-d8db99320623","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:09:00.7778909-06:00</EndDateUtc>
  <IsGraded>true</IsGraded>
  <LastCompletedTakeKey>3f70a39c-7358-48bd-8eaa-775f86ae76b1</LastCompletedTakeKey>
  <LastCompletionDateUtc>2025-12-11T11:09:00.7778909-06:00</LastCompletionDateUtc>
  <LastIsPassed>true</LastIsPassed>
  <LastPointsCorrect>1</LastPointsCorrect>
  <LastPointsPossible>1</LastPointsPossible>
  <LastScore>1</LastScore>
  <LastStartDateUtc>2025-12-11T11:09:00.7778909-06:00</LastStartDateUtc>
  <QuizId>sample string 5</QuizId>
  <QuizName>sample string 1</QuizName>
  <StartedTakeKey>793a5084-f01f-4e57-94b1-d8db99320623</StartedTakeKey>
  <TakeAvailable>true</TakeAvailable>
</ParticipantQuizList>