POST api/students/update-rollno

Request Information

URI Parameters

None.

Body Parameters

StudentRollNoUpdateRequest
NameDescriptionTypeAdditional information
School_Id

integer

None.

Student_Id

integer

None.

RollNo

string

None.

Request Formats

application/json, text/json

Sample:
{
  "School_Id": 1,
  "Student_Id": 2,
  "RollNo": "sample string 3"
}

application/xml, text/xml

Sample:
<StudentRollNoUpdateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SoapToRestAPI.Controllers">
  <RollNo>sample string 3</RollNo>
  <School_Id>1</School_Id>
  <Student_Id>2</Student_Id>
</StudentRollNoUpdateRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.