GET Api/Courses/GetCourseParticipants?idGroup={idGroup}&idCourse={idCourse}&idUser={idUser}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| idGroup | integer |
Required |
|
| idCourse | integer |
Required |
|
| idUser | integer |
Default value is 0 |
Body Parameters
None.
Response Information
Resource Description
Collection of CourseParticipantResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| idGroup | integer |
None. |
|
| idCourse | integer |
None. |
|
| idUser | integer |
None. |
|
| status | boolean |
None. |
|
| aproved | boolean |
None. |
|
| assignedCourseLevel | integer |
None. |
|
| dedicatedTime | decimal number |
None. |
|
| score | decimal number |
None. |
|
| count | integer |
None. |
|
| advancePercentage | decimal number |
None. |
|
| courseStart | date |
None. |
|
| courseEnd | date |
None. |
|
| points | integer |
None. |
|
| favourite | boolean |
None. |
|
| encuesta | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"idGroup": 1,
"idCourse": 2,
"idUser": 3,
"status": true,
"aproved": true,
"assignedCourseLevel": 6,
"dedicatedTime": 7.1,
"score": 8.1,
"count": 9,
"advancePercentage": 10.1,
"courseStart": "2026-02-14T17:50:03.3103141-06:00",
"courseEnd": "2026-02-14T17:50:03.3103141-06:00",
"points": 13,
"favourite": true,
"encuesta": true
},
{
"idGroup": 1,
"idCourse": 2,
"idUser": 3,
"status": true,
"aproved": true,
"assignedCourseLevel": 6,
"dedicatedTime": 7.1,
"score": 8.1,
"count": 9,
"advancePercentage": 10.1,
"courseStart": "2026-02-14T17:50:03.3103141-06:00",
"courseEnd": "2026-02-14T17:50:03.3103141-06:00",
"points": 13,
"favourite": true,
"encuesta": true
}
]
application/xml, text/xml
Sample:
<ArrayOfCourseParticipantResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<CourseParticipantResponse>
<idGroup>1</idGroup>
<idCourse>2</idCourse>
<idUser>3</idUser>
<status>true</status>
<aproved>true</aproved>
<assignedCourseLevel>6</assignedCourseLevel>
<dedicatedTime>7.1</dedicatedTime>
<score>8.1</score>
<count>9</count>
<advancePercentage>10.1</advancePercentage>
<courseStart>2026-02-14T17:50:03.3103141-06:00</courseStart>
<courseEnd>2026-02-14T17:50:03.3103141-06:00</courseEnd>
<points>13</points>
<favourite>true</favourite>
<encuesta>true</encuesta>
</CourseParticipantResponse>
<CourseParticipantResponse>
<idGroup>1</idGroup>
<idCourse>2</idCourse>
<idUser>3</idUser>
<status>true</status>
<aproved>true</aproved>
<assignedCourseLevel>6</assignedCourseLevel>
<dedicatedTime>7.1</dedicatedTime>
<score>8.1</score>
<count>9</count>
<advancePercentage>10.1</advancePercentage>
<courseStart>2026-02-14T17:50:03.3103141-06:00</courseStart>
<courseEnd>2026-02-14T17:50:03.3103141-06:00</courseEnd>
<points>13</points>
<favourite>true</favourite>
<encuesta>true</encuesta>
</CourseParticipantResponse>
</ArrayOfCourseParticipantResponse>