GET Api/Courses/Lessons/Notes?idCourse={idCourse}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
idCourse

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of LessonNotesResponse
NameDescriptionTypeAdditional information
idNote

integer

None.

idLesson

integer

None.

noteDate

date

None.

note

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "idNote": 1,
    "idLesson": 2,
    "noteDate": "2026-02-14T17:48:44.1590317-06:00",
    "note": "sample string 4"
  },
  {
    "idNote": 1,
    "idLesson": 2,
    "noteDate": "2026-02-14T17:48:44.1590317-06:00",
    "note": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfLessonNotesResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <LessonNotesResponse>
    <idNote>1</idNote>
    <idLesson>2</idLesson>
    <noteDate>2026-02-14T17:48:44.1590317-06:00</noteDate>
    <note>sample string 4</note>
  </LessonNotesResponse>
  <LessonNotesResponse>
    <idNote>1</idNote>
    <idLesson>2</idLesson>
    <noteDate>2026-02-14T17:48:44.1590317-06:00</noteDate>
    <note>sample string 4</note>
  </LessonNotesResponse>
</ArrayOfLessonNotesResponse>