POST api/StudentListWithExamMarksV4

Request Information

URI Parameters

None.

Body Parameters

Jsonparams
NameDescriptionTypeAdditional information
jsonstring

string

None.

Request Formats

application/json, text/json

Sample:
{
  "jsonstring": "sample string 1"
}

application/xml, text/xml

Sample:
<Jsonparams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ADMSSCHOOLAPI.Models">
  <jsonstring>sample string 1</jsonstring>
</Jsonparams>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

StudentListExamMark
NameDescriptionTypeAdditional information
Student_List

Collection of StudentExamMarksOut

None.

Response Formats

application/json, text/json

Sample:
{
  "Student_List": [
    {
      "EnrollmentID": "sample string 1",
      "StudentID": "sample string 2",
      "Grade": "sample string 3",
      "acadamicyear": "sample string 4",
      "Fullname": "sample string 5",
      "SubjectMarks": {
        "sample string 1": {},
        "sample string 3": {}
      }
    },
    {
      "EnrollmentID": "sample string 1",
      "StudentID": "sample string 2",
      "Grade": "sample string 3",
      "acadamicyear": "sample string 4",
      "Fullname": "sample string 5",
      "SubjectMarks": {
        "sample string 1": {},
        "sample string 3": {}
      }
    }
  ]
}

application/xml, text/xml

Sample:
<StudentListExamMark xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ADMSSCHOOLAPI.Models">
  <Student_List>
    <StudentExamMarksOut>
      <EnrollmentID>sample string 1</EnrollmentID>
      <Fullname>sample string 5</Fullname>
      <Grade>sample string 3</Grade>
      <StudentID>sample string 2</StudentID>
      <SubjectMarks xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <d4p1:KeyValueOfstringanyType>
          <d4p1:Key>sample string 1</d4p1:Key>
          <d4p1:Value />
        </d4p1:KeyValueOfstringanyType>
        <d4p1:KeyValueOfstringanyType>
          <d4p1:Key>sample string 3</d4p1:Key>
          <d4p1:Value />
        </d4p1:KeyValueOfstringanyType>
      </SubjectMarks>
      <acadamicyear>sample string 4</acadamicyear>
    </StudentExamMarksOut>
    <StudentExamMarksOut>
      <EnrollmentID>sample string 1</EnrollmentID>
      <Fullname>sample string 5</Fullname>
      <Grade>sample string 3</Grade>
      <StudentID>sample string 2</StudentID>
      <SubjectMarks xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <d4p1:KeyValueOfstringanyType>
          <d4p1:Key>sample string 1</d4p1:Key>
          <d4p1:Value />
        </d4p1:KeyValueOfstringanyType>
        <d4p1:KeyValueOfstringanyType>
          <d4p1:Key>sample string 3</d4p1:Key>
          <d4p1:Value />
        </d4p1:KeyValueOfstringanyType>
      </SubjectMarks>
      <acadamicyear>sample string 4</acadamicyear>
    </StudentExamMarksOut>
  </Student_List>
</StudentListExamMark>