POST api/sectionsubjects

Request Information

URI Parameters

None.

Body Parameters

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.

Request Formats

application/json, text/json

Sample:
{
  "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}

application/xml, text/xml

Sample:
<SectionSubjects xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
  <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>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.