POST api/School/UpdateGrade

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
request
No documentation available.

None.

value
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "Id": 1,
  "DivisionCode": 2,
  "DivisionName": "sample string 3",
  "SchoolId": 4,
  "GradeCode": "sample string 5",
  "Name": "sample string 6",
  "Active": true
}

application/xml, text/xml

Sample:
<GradeDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TSV.Core.DTO">
  <Active>true</Active>
  <DivisionCode>2</DivisionCode>
  <DivisionName>sample string 3</DivisionName>
  <GradeCode>sample string 5</GradeCode>
  <Id>1</Id>
  <Name>sample string 6</Name>
  <SchoolId>4</SchoolId>
</GradeDTO>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'GradeDTO'.