POST api/StudentFee/GetFeeComponentList

Request Information

URI Parameters

None.

Body Parameters

Collection of FeeMonthModel
NameDescriptionTypeAdditional information
MonthName

string

None.

ID

integer

None.

Abbr

string

None.

IsSelected

boolean

None.

IsPaid

boolean

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "MonthName": "sample string 1",
    "ID": 2,
    "Abbr": "sample string 3",
    "IsSelected": true,
    "IsPaid": true
  },
  {
    "MonthName": "sample string 1",
    "ID": 2,
    "Abbr": "sample string 3",
    "IsSelected": true,
    "IsPaid": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfFeeMonthModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models.StudentWork">
  <FeeMonthModel>
    <Abbr>sample string 3</Abbr>
    <ID>2</ID>
    <IsPaid>true</IsPaid>
    <IsSelected>true</IsSelected>
    <MonthName>sample string 1</MonthName>
  </FeeMonthModel>
  <FeeMonthModel>
    <Abbr>sample string 3</Abbr>
    <ID>2</ID>
    <IsPaid>true</IsPaid>
    <IsSelected>true</IsSelected>
    <MonthName>sample string 1</MonthName>
  </FeeMonthModel>
</ArrayOfFeeMonthModel>

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.