GET classroomAPI/Gamification/getMissionProgressByUser

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of missionProgressSummary
NameDescriptionTypeAdditional information
MissionID

integer

None.

Completed

integer

None.

CompletedMultiples

integer

None.

currentvalidCompleted

integer

None.

IconHeader

string

None.

Name

string

None.

Description

string

None.

Points

integer

None.

UserID

integer

None.

PointsPer

integer

None.

Repeatable

boolean

None.

SinglePoints

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "MissionID": 1,
    "Completed": 2,
    "CompletedMultiples": 3,
    "currentvalidCompleted": 4,
    "IconHeader": "sample string 5",
    "Name": "sample string 6",
    "Description": "sample string 7",
    "Points": 8,
    "UserID": 9,
    "PointsPer": 10,
    "Repeatable": true,
    "SinglePoints": 12
  },
  {
    "MissionID": 1,
    "Completed": 2,
    "CompletedMultiples": 3,
    "currentvalidCompleted": 4,
    "IconHeader": "sample string 5",
    "Name": "sample string 6",
    "Description": "sample string 7",
    "Points": 8,
    "UserID": 9,
    "PointsPer": 10,
    "Repeatable": true,
    "SinglePoints": 12
  }
]

application/xml, text/xml

Sample:
<ArrayOfmissionProgressSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Classroom.ClassroomBLL">
  <missionProgressSummary>
    <Completed>2</Completed>
    <CompletedMultiples>3</CompletedMultiples>
    <Description>sample string 7</Description>
    <IconHeader>sample string 5</IconHeader>
    <MissionID>1</MissionID>
    <Name>sample string 6</Name>
    <Points>8</Points>
    <PointsPer>10</PointsPer>
    <Repeatable>true</Repeatable>
    <SinglePoints>12</SinglePoints>
    <UserID>9</UserID>
    <currentvalidCompleted>4</currentvalidCompleted>
  </missionProgressSummary>
  <missionProgressSummary>
    <Completed>2</Completed>
    <CompletedMultiples>3</CompletedMultiples>
    <Description>sample string 7</Description>
    <IconHeader>sample string 5</IconHeader>
    <MissionID>1</MissionID>
    <Name>sample string 6</Name>
    <Points>8</Points>
    <PointsPer>10</PointsPer>
    <Repeatable>true</Repeatable>
    <SinglePoints>12</SinglePoints>
    <UserID>9</UserID>
    <currentvalidCompleted>4</currentvalidCompleted>
  </missionProgressSummary>
</ArrayOfmissionProgressSummary>