GET restapi/personal/courses/yourstudents/courses/v1

Gets all courses of your students of the current user.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Itslearning.RestApi.Entities.Personal.Course.YourStudentCourse
NameDescriptionTypeAdditional information
Title

Title of the Course.

string

None.

CourseId

Course ID.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Title": "sample string 1",
    "CourseId": 2
  },
  {
    "Title": "sample string 1",
    "CourseId": 2
  }
]

application/xml, text/xml

Sample:
<ArrayOfYourStudentCourse xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <YourStudentCourse>
    <CourseId>2</CourseId>
    <Title>sample string 1</Title>
  </YourStudentCourse>
  <YourStudentCourse>
    <CourseId>2</CourseId>
    <Title>sample string 1</Title>
  </YourStudentCourse>
</ArrayOfYourStudentCourse>