GET api/StudentCourses/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ApkGetAssignedCourses_Result
NameDescriptionTypeAdditional information
studentid

integer

None.

Courseid

integer

None.

StartDate

date

None.

EndDate

date

None.

batchid

integer

None.

coursename

string

None.

type

string

None.

DisplayName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "studentid": 1,
    "Courseid": 1,
    "StartDate": "2025-12-08T16:20:17.39734+05:30",
    "EndDate": "2025-12-08T16:20:17.39734+05:30",
    "batchid": 1,
    "coursename": "sample string 1",
    "type": "sample string 2",
    "DisplayName": "sample string 3"
  },
  {
    "studentid": 1,
    "Courseid": 1,
    "StartDate": "2025-12-08T16:20:17.39734+05:30",
    "EndDate": "2025-12-08T16:20:17.39734+05:30",
    "batchid": 1,
    "coursename": "sample string 1",
    "type": "sample string 2",
    "DisplayName": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfApkGetAssignedCourses_Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LmsDB">
  <ApkGetAssignedCourses_Result>
    <Courseid>1</Courseid>
    <DisplayName>sample string 3</DisplayName>
    <EndDate>2025-12-08T16:20:17.39734+05:30</EndDate>
    <StartDate>2025-12-08T16:20:17.39734+05:30</StartDate>
    <batchid>1</batchid>
    <coursename>sample string 1</coursename>
    <studentid>1</studentid>
    <type>sample string 2</type>
  </ApkGetAssignedCourses_Result>
  <ApkGetAssignedCourses_Result>
    <Courseid>1</Courseid>
    <DisplayName>sample string 3</DisplayName>
    <EndDate>2025-12-08T16:20:17.39734+05:30</EndDate>
    <StartDate>2025-12-08T16:20:17.39734+05:30</StartDate>
    <batchid>1</batchid>
    <coursename>sample string 1</coursename>
    <studentid>1</studentid>
    <type>sample string 2</type>
  </ApkGetAssignedCourses_Result>
</ArrayOfApkGetAssignedCourses_Result>