GET Api/Groups/GetGroupParticipants?idGroup={idGroup}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| idGroup | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of GroupPaticipantResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| idGroup | integer |
None. |
|
| idUser | integer |
None. |
|
| totalCourses | integer |
None. |
|
| completeCourses | integer |
None. |
|
| groupUserPercentage | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"idGroup": 1,
"idUser": 2,
"totalCourses": 3,
"completeCourses": 4,
"groupUserPercentage": 5.1
},
{
"idGroup": 1,
"idUser": 2,
"totalCourses": 3,
"completeCourses": 4,
"groupUserPercentage": 5.1
}
]
application/xml, text/xml
Sample:
<ArrayOfGroupPaticipantResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<GroupPaticipantResponse>
<idGroup>1</idGroup>
<idUser>2</idUser>
<totalCourses>3</totalCourses>
<completeCourses>4</completeCourses>
<groupUserPercentage>5.1</groupUserPercentage>
</GroupPaticipantResponse>
<GroupPaticipantResponse>
<idGroup>1</idGroup>
<idUser>2</idUser>
<totalCourses>3</totalCourses>
<completeCourses>4</completeCourses>
<groupUserPercentage>5.1</groupUserPercentage>
</GroupPaticipantResponse>
</ArrayOfGroupPaticipantResponse>