POST api/PreviousBalance/Create
Request Information
URI Parameters
None.
Body Parameters
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. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"previousAmount": 1.0,
"previousDate": "2025-12-10T10:56:55.6874985+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-10T10:56:55.6874985+05:30</previousDate> </tblPreviousBalance>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.