GET api/users/user/{userId}/getCurrentWorkingLevelForCourse?courseSubject={courseSubject}

Get current working level for a course

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userId

User ID.

integer

Required

courseSubject

Course subject

string

Required

Body Parameters

None.

Response Information

Resource Description

WorkingLevel
NameDescriptionTypeAdditional information
CourseLevel

Course Level

string

None.

LevelName

Level Name

string

None.

IsCurrentWorkingLevel

Is it current working level

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "CourseLevel": "sample string 1",
  "LevelName": "sample string 2",
  "IsCurrentWorkingLevel": true
}

application/xml, text/xml

Sample:
<WorkingLevel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <CourseLevel>sample string 1</CourseLevel>
  <LevelName>sample string 2</LevelName>
  <IsCurrentWorkingLevel>true</IsCurrentWorkingLevel>
</WorkingLevel>