GET api/ExpenseDetail/Details/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
tblExpenseDetail| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| expenseId | integer |
None. |
|
| totalAmount | decimal number |
None. |
|
| expenseDate | date |
None. |
|
| expenseDesc | string |
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,
"expenseId": 1,
"totalAmount": 1.0,
"expenseDate": "2025-12-10T11:04:16.5944131+05:30",
"expenseDesc": "sample string 2",
"delFlag": 1,
"fyear": 3,
"monthId": 4,
"SocietyId": 5,
"buildingId": 6
}
text/xml
Sample:
<tblExpenseDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProjWebApiMaint.Models"> <Id>1</Id> <SocietyId>5</SocietyId> <buildingId>6</buildingId> <delFlag>1</delFlag> <expenseDate>2025-12-10T11:04:16.5944131+05:30</expenseDate> <expenseDesc>sample string 2</expenseDesc> <expenseId>1</expenseId> <fyear>3</fyear> <monthId>4</monthId> <totalAmount>1</totalAmount> </tblExpenseDetail>