POST api/Accounts/GetPreviousMonthFeeOfStudent

Request Information

URI Parameters

None.

Body Parameters

FeesModel
NameDescriptionTypeAdditional information
id

integer

None.

StudentId

integer

None.

ClassId

integer

None.

SectionId

integer

None.

voucherNo

string

None.

totalFee

decimal number

None.

amountPaid

decimal number

None.

amountRemaining

decimal number

None.

prevBalance

decimal number

None.

month

string

None.

year

string

None.

IsActive

boolean

None.

addedOn

date

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "studentId": 2,
  "classId": 3,
  "sectionId": 4,
  "voucherNo": "sample string 5",
  "totalFee": 6.1,
  "amountPaid": 7.1,
  "amountRemaining": 8.1,
  "prevBalance": 1.1,
  "month": "sample string 9",
  "year": "sample string 10",
  "isActive": true,
  "addedOn": "2026-06-22T02:28:35.3728241-07:00"
}

application/xml, text/xml

Sample:
<FeesModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Models">
  <ClassId>3</ClassId>
  <IsActive>true</IsActive>
  <SectionId>4</SectionId>
  <StudentId>2</StudentId>
  <addedOn>2026-06-22T02:28:35.3728241-07:00</addedOn>
  <amountPaid>7.1</amountPaid>
  <amountRemaining>8.1</amountRemaining>
  <id>1</id>
  <month>sample string 9</month>
  <prevBalance>1.1</prevBalance>
  <totalFee>6.1</totalFee>
  <voucherNo>sample string 5</voucherNo>
  <year>sample string 10</year>
</FeesModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ApiResponseResult
NameDescriptionTypeAdditional information
statusCode

integer

None.

status

boolean

None.

message

string

None.

data

Object

None.

ErrorCode

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "statusCode": 1,
  "status": true,
  "message": "sample string 3",
  "data": {},
  "errorCode": 5
}

application/xml, text/xml

Sample:
<ApiResponseResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Models">
  <ErrorCode>5</ErrorCode>
  <data />
  <message>sample string 3</message>
  <status>true</status>
  <statusCode>1</statusCode>
</ApiResponseResult>