GET api/v1/general/yearCatalogCourseMapping

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

GetYearCatalogCourseMappingModel
NameDescriptionTypeAdditional information
YearCatalogCourseMapping

Collection of YearCatalogCourseMappingModel

None.

YearCatalog

Collection of CatalogModel

None.

Response Formats

application/json, text/json

Sample:
{
  "YearCatalogCourseMapping": [
    {
      "Id": 1,
      "CatalogId": 2,
      "CourseId": 3,
      "IsRequired": true,
      "Points": 5,
      "IsDeleted": true
    },
    {
      "Id": 1,
      "CatalogId": 2,
      "CourseId": 3,
      "IsRequired": true,
      "Points": 5,
      "IsDeleted": true
    }
  ],
  "YearCatalog": [
    {
      "Id": 1,
      "YearId": 2,
      "ProgramId": 3,
      "MiniPointsRequired": 4
    },
    {
      "Id": 1,
      "YearId": 2,
      "ProgramId": 3,
      "MiniPointsRequired": 4
    }
  ]
}

application/xml, text/xml

Sample:
<GetYearCatalogCourseMappingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Emalogic.Conservatory.Common.Models">
  <YearCatalog>
    <CatalogModel>
      <Id>1</Id>
      <MiniPointsRequired>4</MiniPointsRequired>
      <ProgramId>3</ProgramId>
      <YearId>2</YearId>
    </CatalogModel>
    <CatalogModel>
      <Id>1</Id>
      <MiniPointsRequired>4</MiniPointsRequired>
      <ProgramId>3</ProgramId>
      <YearId>2</YearId>
    </CatalogModel>
  </YearCatalog>
  <YearCatalogCourseMapping>
    <YearCatalogCourseMappingModel>
      <CatalogId>2</CatalogId>
      <CourseId>3</CourseId>
      <Id>1</Id>
      <IsDeleted>true</IsDeleted>
      <IsRequired>true</IsRequired>
      <Points>5</Points>
    </YearCatalogCourseMappingModel>
    <YearCatalogCourseMappingModel>
      <CatalogId>2</CatalogId>
      <CourseId>3</CourseId>
      <Id>1</Id>
      <IsDeleted>true</IsDeleted>
      <IsRequired>true</IsRequired>
      <Points>5</Points>
    </YearCatalogCourseMappingModel>
  </YearCatalogCourseMapping>
</GetYearCatalogCourseMappingModel>