GET api/courses/course?courseSubject={courseSubject}
Get a course by course subject.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| courseSubject |
Course subject. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
OrgCourse| Name | Description | Type | Additional information |
|---|---|---|---|
| IsLicensed |
If the course is licensed for your organisation. |
boolean |
None. |
| IsReforms |
If the course is reforms course or not. |
boolean |
None. |
| CourseGroup |
Course Group |
CourseGroup |
None. |
| CourseName |
Course Name |
string |
None. |
| CourseSubject |
Course Subject |
string |
None. |
| CourseIconUrl |
Course Icon |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsLicensed": true,
"IsReforms": true,
"CourseGroup": {
"CourseGroupId": 1,
"CourseGroupName": "sample string 2",
"CourseGroupIconUrl": "sample string 3"
},
"CourseName": "sample string 3",
"CourseSubject": "sample string 4",
"CourseIconUrl": "sample string 5"
}
application/xml, text/xml
Sample:
<OrgCourse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<CourseName>sample string 3</CourseName>
<CourseSubject>sample string 4</CourseSubject>
<CourseIconUrl>sample string 5</CourseIconUrl>
<CourseGroup>
<CourseGroupId>1</CourseGroupId>
<CourseGroupName>sample string 2</CourseGroupName>
<CourseGroupIconUrl>sample string 3</CourseGroupIconUrl>
</CourseGroup>
<IsLicensed>true</IsLicensed>
<IsReforms>true</IsReforms>
</OrgCourse>
