GET api/v1/general/dataSummary?CoureseIs={CoureseIs}&FacultyId={FacultyId}&ProgramId={ProgramId}&YearId={YearId}&IsIndividual={IsIndividual}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| CoureseIs | integer |
None. |
|
| FacultyId | integer |
None. |
|
| ProgramId | integer |
None. |
|
| YearId | integer |
None. |
|
| IsIndividual | boolean |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of DataSummaryModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CourseId | integer |
None. |
|
| FacultyId | integer |
None. |
|
| ProgramId | integer |
None. |
|
| CapacityInHours | decimal number |
None. |
|
| ActualInHours | decimal number |
None. |
|
| FreePlaces | decimal number |
None. |
|
| IndividualHours | decimal number |
None. |
|
| ManagmentHours | decimal number |
None. |
|
| GroupHours | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"CourseId": 1,
"FacultyId": 2,
"ProgramId": 3,
"CapacityInHours": 4.0,
"ActualInHours": 1.0,
"FreePlaces": 1.0,
"IndividualHours": 1.0,
"ManagmentHours": 5.0,
"GroupHours": 1.0
},
{
"CourseId": 1,
"FacultyId": 2,
"ProgramId": 3,
"CapacityInHours": 4.0,
"ActualInHours": 1.0,
"FreePlaces": 1.0,
"IndividualHours": 1.0,
"ManagmentHours": 5.0,
"GroupHours": 1.0
}
]
application/xml, text/xml
Sample:
<ArrayOfDataSummaryModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Emalogic.Conservatory.Common.Models">
<DataSummaryModel>
<ActualInHours>1</ActualInHours>
<CapacityInHours>4</CapacityInHours>
<CourseId>1</CourseId>
<FacultyId>2</FacultyId>
<FreePlaces>1</FreePlaces>
<GroupHours>1</GroupHours>
<IndividualHours>1</IndividualHours>
<ManagmentHours>5</ManagmentHours>
<ProgramId>3</ProgramId>
</DataSummaryModel>
<DataSummaryModel>
<ActualInHours>1</ActualInHours>
<CapacityInHours>4</CapacityInHours>
<CourseId>1</CourseId>
<FacultyId>2</FacultyId>
<FreePlaces>1</FreePlaces>
<GroupHours>1</GroupHours>
<IndividualHours>1</IndividualHours>
<ManagmentHours>5</ManagmentHours>
<ProgramId>3</ProgramId>
</DataSummaryModel>
</ArrayOfDataSummaryModel>