GET api/sectionsubjects

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of SectionSubjects
NameDescriptionTypeAdditional information
Id

integer

None.

Section_Id

integer

None.

Subject_Id

integer

None.

Slots

integer

None.

Faculty_Id

integer

None.

Dissolved

boolean

None.

OpenSubject

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "section_Id": 2,
    "subject_Id": 3,
    "slots": 4,
    "faculty_Id": 5,
    "dissolved": true,
    "openSubject": true
  },
  {
    "id": 1,
    "section_Id": 2,
    "subject_Id": 3,
    "slots": 4,
    "faculty_Id": 5,
    "dissolved": true,
    "openSubject": true
  }
]

text/html

Sample:
[{"id":1,"section_Id":2,"subject_Id":3,"slots":4,"faculty_Id":5,"dissolved":true,"openSubject":true},{"id":1,"section_Id":2,"subject_Id":3,"slots":4,"faculty_Id":5,"dissolved":true,"openSubject":true}]

application/xml, text/xml

Sample:
<ArrayOfSectionSubjects xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
  <SectionSubjects>
    <Dissolved>true</Dissolved>
    <Faculty_Id>5</Faculty_Id>
    <Id>1</Id>
    <OpenSubject>true</OpenSubject>
    <Section_Id>2</Section_Id>
    <Slots>4</Slots>
    <Subject_Id>3</Subject_Id>
  </SectionSubjects>
  <SectionSubjects>
    <Dissolved>true</Dissolved>
    <Faculty_Id>5</Faculty_Id>
    <Id>1</Id>
    <OpenSubject>true</OpenSubject>
    <Section_Id>2</Section_Id>
    <Slots>4</Slots>
    <Subject_Id>3</Subject_Id>
  </SectionSubjects>
</ArrayOfSectionSubjects>