GET api/MaintenanceHeads/GetMaintenanceHeadByMobile/{mobile}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| mobile | string |
Required |
Body Parameters
None.
Response Information
Resource Description
tblMaintenanceHead| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| transactionId | string |
None. |
|
| maintenanceAmount | decimal number |
None. |
|
| remainingAmount | decimal number |
None. |
|
| maintenenceDate | date |
None. |
|
| monthId | integer |
None. |
|
| buildingId | integer |
None. |
|
| flatId | integer |
None. |
|
| paymentModeId | integer |
None. |
|
| delFlag | integer |
None. |
|
| fyear | integer |
None. |
|
| paymentStatus | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"transactionId": "sample string 2",
"maintenanceAmount": 1.0,
"remainingAmount": 1.0,
"maintenenceDate": "2025-12-10T11:01:31.4529401+05:30",
"monthId": 1,
"buildingId": 1,
"flatId": 1,
"paymentModeId": 1,
"delFlag": 1,
"fyear": 1,
"paymentStatus": 1
}
text/xml
Sample:
<tblMaintenanceHead xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProjWebApiMaint.Models"> <Id>1</Id> <buildingId>1</buildingId> <delFlag>1</delFlag> <flatId>1</flatId> <fyear>1</fyear> <maintenanceAmount>1</maintenanceAmount> <maintenenceDate>2025-12-10T11:01:31.4529401+05:30</maintenenceDate> <monthId>1</monthId> <paymentModeId>1</paymentModeId> <paymentStatus>1</paymentStatus> <remainingAmount>1</remainingAmount> <transactionId>sample string 2</transactionId> </tblMaintenanceHead>