GET api/PreviousBalance/Details/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

tblPreviousBalance
NameDescriptionTypeAdditional 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:04:15.6214289+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:04:15.6214289+05:30</previousDate>
</tblPreviousBalance>