GET api/PreviousBalance/TotalPrevbalance/{buildingId}/{year}/{fyearmonth}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| buildingId | integer |
Required |
|
| year | integer |
Required |
|
| fyearmonth | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
tblPreviousBalance| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| previousAmount | decimal number |
None. |
|
| previousDate | date |
None. |
|
| delFlag | integer |
None. |
|
| fyear | integer |
None. |
|
| monthId | integer |
None. |
|
| SocietyId | integer |
None. |
|
| buildingId | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"previousAmount": 1.0,
"previousDate": "2025-12-10T11:03:33.8571258+05:30",
"delFlag": 1,
"fyear": 2,
"monthId": 3,
"SocietyId": 4,
"buildingId": 5
}
text/xml
Sample:
<tblPreviousBalance xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProjWebApiMaint.Models"> <Id>1</Id> <SocietyId>4</SocietyId> <buildingId>5</buildingId> <delFlag>1</delFlag> <fyear>2</fyear> <monthId>3</monthId> <previousAmount>1</previousAmount> <previousDate>2025-12-10T11:03:33.8571258+05:30</previousDate> </tblPreviousBalance>