POST api/Administrator/AddStudentWiseWaiveOff

Request Information

URI Parameters

None.

Body Parameters

StudentWaiveOffModel
NameDescriptionTypeAdditional information
AdmissionNo

string

None.

StudentName

string

None.

SelectedClassID

integer

None.

SelectedSectionID

integer

None.

SelectedStudentID

integer

None.

OldStudentID

integer

None.

Class

string

None.

ParentName

string

None.

FeeMonth

string

None.

IsEdit

boolean

None.

MonthList

Collection of MonthModel

None.

Status

integer

None.

Message

string

None.

Domain

string

None.

Request Formats

application/json, text/json

Sample:
{
  "AdmissionNo": "sample string 1",
  "StudentName": "sample string 2",
  "SelectedClassID": 3,
  "SelectedSectionID": 4,
  "SelectedStudentID": 5,
  "OldStudentID": 6,
  "Class": "sample string 7",
  "ParentName": "sample string 8",
  "FeeMonth": "sample string 9",
  "IsEdit": true,
  "MonthList": [
    {
      "ID": 1,
      "MonthName": "sample string 2",
      "Abbr": "sample string 3",
      "Code": 4,
      "IsSelected": true
    },
    {
      "ID": 1,
      "MonthName": "sample string 2",
      "Abbr": "sample string 3",
      "Code": 4,
      "IsSelected": true
    }
  ],
  "Status": 11,
  "Message": "sample string 12",
  "Domain": "sample string 13"
}

application/xml, text/xml

Sample:
<StudentWaiveOffModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models.MasterModels">
  <Domain xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models">sample string 13</Domain>
  <Message xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models">sample string 12</Message>
  <Status xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models">11</Status>
  <AdmissionNo>sample string 1</AdmissionNo>
  <Class>sample string 7</Class>
  <FeeMonth>sample string 9</FeeMonth>
  <IsEdit>true</IsEdit>
  <MonthList>
    <MonthModel>
      <Abbr>sample string 3</Abbr>
      <Code>4</Code>
      <ID>1</ID>
      <IsSelected>true</IsSelected>
      <MonthName>sample string 2</MonthName>
    </MonthModel>
    <MonthModel>
      <Abbr>sample string 3</Abbr>
      <Code>4</Code>
      <ID>1</ID>
      <IsSelected>true</IsSelected>
      <MonthName>sample string 2</MonthName>
    </MonthModel>
  </MonthList>
  <OldStudentID>6</OldStudentID>
  <ParentName>sample string 8</ParentName>
  <SelectedClassID>3</SelectedClassID>
  <SelectedSectionID>4</SelectedSectionID>
  <SelectedStudentID>5</SelectedStudentID>
  <StudentName>sample string 2</StudentName>
</StudentWaiveOffModel>

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.