POST api/ReportCard

Request Information

URI Parameters

None.

Body Parameters

MarksInfo
NameDescriptionTypeAdditional information
StudentID

string

None.

SubjectID

string

None.

QuarterNumber

string

None.

Branch

string

None.

Request Formats

application/json, text/json

Sample:
{
  "StudentID": "sample string 1",
  "SubjectID": "sample string 2",
  "QuarterNumber": "sample string 3",
  "Branch": "sample string 4"
}

application/xml, text/xml

Sample:
<MarksInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/appliedline.gssman2016.webapi.Controllers">
  <Branch>sample string 4</Branch>
  <QuarterNumber>sample string 3</QuarterNumber>
  <StudentID>sample string 1</StudentID>
  <SubjectID>sample string 2</SubjectID>
</MarksInfo>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of Object

None.

Response Formats

application/json, text/json

Sample:
[
  {},
  {}
]

application/xml, text/xml

Sample:
<ArrayOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <anyType />
  <anyType />
</ArrayOfanyType>