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

Request Information

URI Parameters

NameDescriptionTypeAdditional information
idCourse

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of LessonParticipantResponse
NameDescriptionTypeAdditional information
idLesson

integer

None.

lessonValue

decimal number

None.

started

boolean

None.

startDate

date

None.

ended

boolean

None.

endDate

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "idLesson": 1,
    "lessonValue": 2.1,
    "started": true,
    "startDate": "2026-02-14T17:49:43.4054549-06:00",
    "ended": true,
    "endDate": "2026-02-14T17:49:43.4054549-06:00"
  },
  {
    "idLesson": 1,
    "lessonValue": 2.1,
    "started": true,
    "startDate": "2026-02-14T17:49:43.4054549-06:00",
    "ended": true,
    "endDate": "2026-02-14T17:49:43.4054549-06:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfLessonParticipantResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <LessonParticipantResponse>
    <idLesson>1</idLesson>
    <lessonValue>2.1</lessonValue>
    <started>true</started>
    <startDate>2026-02-14T17:49:43.4054549-06:00</startDate>
    <ended>true</ended>
    <endDate>2026-02-14T17:49:43.4054549-06:00</endDate>
  </LessonParticipantResponse>
  <LessonParticipantResponse>
    <idLesson>1</idLesson>
    <lessonValue>2.1</lessonValue>
    <started>true</started>
    <startDate>2026-02-14T17:49:43.4054549-06:00</startDate>
    <ended>true</ended>
    <endDate>2026-02-14T17:49:43.4054549-06:00</endDate>
  </LessonParticipantResponse>
</ArrayOfLessonParticipantResponse>