PUT api/section/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

Section
NameDescriptionTypeAdditional information
Id

integer

None.

Code

string

None.

Department_Id

integer

None.

ClassAdviser

string

None.

Course_Id

integer

None.

Level

integer

None.

TermID

integer

None.

SectionType

string

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "code": "sample string 2",
  "department_Id": 3,
  "classAdviser": "sample string 4",
  "course_Id": 5,
  "level": 6,
  "termID": 7,
  "sectionType": "sample string 8"
}

text/html

Sample:
{"id":1,"code":"sample string 2","department_Id":3,"classAdviser":"sample string 4","course_Id":5,"level":6,"termID":7,"sectionType":"sample string 8"}

application/xml, text/xml

Sample:
<Section xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UBBEAMS.Infrastructure.Models">
  <ClassAdviser>sample string 4</ClassAdviser>
  <Code>sample string 2</Code>
  <Course_Id>5</Course_Id>
  <Department_Id>3</Department_Id>
  <Id>1</Id>
  <Level>6</Level>
  <SectionType>sample string 8</SectionType>
  <TermID>7</TermID>
</Section>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.