POST api/Administrator/GetClassWiseFeeCollectionExcel

Request Information

URI Parameters

None.

Body Parameters

MasterClassWiseFeeCollection
NameDescriptionTypeAdditional information
SelectedClassID

integer

None.

SelectedSectionID

integer

None.

PaymentModeString

string

None.

StartDate

date

None.

EndDate

date

None.

PageNo

integer

None.

RowNo

integer

None.

TotalRow

integer

None.

FeeCollectionList

Collection of ClassWiseFeeCollection

None.

Status

integer

None.

Message

string

None.

Domain

string

None.

Request Formats

application/json, text/json

Sample:
{
  "SelectedClassID": 1,
  "SelectedSectionID": 2,
  "PaymentModeString": "sample string 3",
  "StartDate": "2024-09-20T06:30:33.749479+05:30",
  "EndDate": "2024-09-20T06:30:33.749479+05:30",
  "PageNo": 6,
  "RowNo": 7,
  "TotalRow": 8,
  "FeeCollectionList": [
    {
      "AdmissionNo": "sample string 1",
      "ReceiptNo": "sample string 2",
      "StudentName": "sample string 3",
      "Class": "sample string 4",
      "PaymentDate": "2024-09-20T06:30:33.749479+05:30",
      "PaymentDateString": "20/09/2024",
      "PaidAmount": 6.0,
      "FeeForMonth": "sample string 7",
      "PaymentMode": "sample string 8"
    },
    {
      "AdmissionNo": "sample string 1",
      "ReceiptNo": "sample string 2",
      "StudentName": "sample string 3",
      "Class": "sample string 4",
      "PaymentDate": "2024-09-20T06:30:33.749479+05:30",
      "PaymentDateString": "20/09/2024",
      "PaidAmount": 6.0,
      "FeeForMonth": "sample string 7",
      "PaymentMode": "sample string 8"
    }
  ],
  "Status": 9,
  "Message": "sample string 10",
  "Domain": "sample string 11"
}

application/xml, text/xml

Sample:
<MasterClassWiseFeeCollection xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models.Administrator">
  <Domain xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models">sample string 11</Domain>
  <Message xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models">sample string 10</Message>
  <Status xmlns="http://schemas.datacontract.org/2004/07/OnlineSchoolManagement.Models">9</Status>
  <EndDate>2024-09-20T06:30:33.749479+05:30</EndDate>
  <FeeCollectionList>
    <ClassWiseFeeCollection>
      <AdmissionNo>sample string 1</AdmissionNo>
      <Class>sample string 4</Class>
      <FeeForMonth>sample string 7</FeeForMonth>
      <PaidAmount>6</PaidAmount>
      <PaymentDate>2024-09-20T06:30:33.749479+05:30</PaymentDate>
      <PaymentMode>sample string 8</PaymentMode>
      <ReceiptNo>sample string 2</ReceiptNo>
      <StudentName>sample string 3</StudentName>
    </ClassWiseFeeCollection>
    <ClassWiseFeeCollection>
      <AdmissionNo>sample string 1</AdmissionNo>
      <Class>sample string 4</Class>
      <FeeForMonth>sample string 7</FeeForMonth>
      <PaidAmount>6</PaidAmount>
      <PaymentDate>2024-09-20T06:30:33.749479+05:30</PaymentDate>
      <PaymentMode>sample string 8</PaymentMode>
      <ReceiptNo>sample string 2</ReceiptNo>
      <StudentName>sample string 3</StudentName>
    </ClassWiseFeeCollection>
  </FeeCollectionList>
  <PageNo>6</PageNo>
  <PaymentModeString>sample string 3</PaymentModeString>
  <RowNo>7</RowNo>
  <SelectedClassID>1</SelectedClassID>
  <SelectedSectionID>2</SelectedSectionID>
  <StartDate>2024-09-20T06:30:33.749479+05:30</StartDate>
  <TotalRow>8</TotalRow>
</MasterClassWiseFeeCollection>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>