POST api/StorylineTracking/QuizProgress

Handles the requests for computation of the Progress of a Storyline of type QUIZ

Request Information

URI Parameters

None.

Body Parameters

The body of the request that contains the necessary parameters for fetching the Statements from the LRS

StorylineRequestBody
NameDescriptionTypeAdditional information
UserId

string

None.

CommunityId

string

None.

OrganizationId

string

None.

CurrentPlayUniqueSessionId

string

None.

StorylineId

string

None.

StorylineGuid

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "sample string 1",
  "CommunityId": "sample string 2",
  "OrganizationId": "sample string 3",
  "CurrentPlayUniqueSessionId": "sample string 4",
  "StorylineId": "sample string 5",
  "StorylineGuid": "sample string 6"
}

application/xml, text/xml

Sample:
<StorylineRequestBody xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Adevico.xApi_LRC.Models">
  <CommunityId>sample string 2</CommunityId>
  <CurrentPlayUniqueSessionId>sample string 4</CurrentPlayUniqueSessionId>
  <OrganizationId>sample string 3</OrganizationId>
  <StorylineGuid>sample string 6</StorylineGuid>
  <StorylineId>sample string 5</StorylineId>
  <UserId>sample string 1</UserId>
</StorylineRequestBody>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

The Progress done by the specified user on the specified Storyline

StorylineQuizProgress
NameDescriptionTypeAdditional information
BestScore

Score

None.

CurrentScore

Score

None.

AllScores

Collection of Score

None.

StorylineState

StorylineState

None.

TotalTimeStay

time interval

None.

CurrentPlaySessionTimeStay

time interval

None.

TotalViewedSlidesCount

integer

None.

CurrentPlaySessionViewedSlidesCount

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "BestScore": {
    "UniquePlaySessionId": "sample string 1",
    "TotalScore": 2.1,
    "RawScore": 3.1,
    "ScaledScore": 4.1,
    "Success": true
  },
  "CurrentScore": {
    "UniquePlaySessionId": "sample string 1",
    "TotalScore": 2.1,
    "RawScore": 3.1,
    "ScaledScore": 4.1,
    "Success": true
  },
  "AllScores": [
    {
      "UniquePlaySessionId": "sample string 1",
      "TotalScore": 2.1,
      "RawScore": 3.1,
      "ScaledScore": 4.1,
      "Success": true
    },
    {
      "UniquePlaySessionId": "sample string 1",
      "TotalScore": 2.1,
      "RawScore": 3.1,
      "ScaledScore": 4.1,
      "Success": true
    }
  ],
  "StorylineState": 0,
  "TotalTimeStay": "00:00:00.1234567",
  "CurrentPlaySessionTimeStay": "00:00:00.1234567",
  "TotalViewedSlidesCount": 3,
  "CurrentPlaySessionViewedSlidesCount": 4
}

application/xml, text/xml

Sample:
<StorylineQuizProgress xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Adevico.xApi_LRC.Models">
  <CurrentPlaySessionTimeStay>PT0.1234567S</CurrentPlaySessionTimeStay>
  <CurrentPlaySessionViewedSlidesCount>4</CurrentPlaySessionViewedSlidesCount>
  <StorylineState>NOT_STARTED</StorylineState>
  <TotalTimeStay>PT0.1234567S</TotalTimeStay>
  <TotalViewedSlidesCount>3</TotalViewedSlidesCount>
  <AllScores>
    <Score>
      <RawScore>3.1</RawScore>
      <ScaledScore>4.1</ScaledScore>
      <Success>true</Success>
      <TotalScore>2.1</TotalScore>
      <UniquePlaySessionId>sample string 1</UniquePlaySessionId>
    </Score>
    <Score>
      <RawScore>3.1</RawScore>
      <ScaledScore>4.1</ScaledScore>
      <Success>true</Success>
      <TotalScore>2.1</TotalScore>
      <UniquePlaySessionId>sample string 1</UniquePlaySessionId>
    </Score>
  </AllScores>
  <BestScore>
    <RawScore>3.1</RawScore>
    <ScaledScore>4.1</ScaledScore>
    <Success>true</Success>
    <TotalScore>2.1</TotalScore>
    <UniquePlaySessionId>sample string 1</UniquePlaySessionId>
  </BestScore>
  <CurrentScore>
    <RawScore>3.1</RawScore>
    <ScaledScore>4.1</ScaledScore>
    <Success>true</Success>
    <TotalScore>2.1</TotalScore>
    <UniquePlaySessionId>sample string 1</UniquePlaySessionId>
  </CurrentScore>
</StorylineQuizProgress>