POST api/v1/ParkingReport
Request Information
URI Parameters
None.
Body Parameters
ParkingStatusInput| Name | Description | Type | Additional information |
|---|---|---|---|
| UserID | integer |
None. |
|
| VehicleTypeID | integer |
None. |
|
| LocID | integer |
None. |
|
| VehicleNo | string |
None. |
|
| ParkingID | integer |
None. |
|
| ParkingDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserID": 1,
"VehicleTypeID": 2,
"LocID": 3,
"VehicleNo": "sample string 4",
"ParkingID": 5,
"ParkingDate": "2025-12-10T12:36:31.2297905+05:30"
}
application/xml, text/xml
Sample:
<ParkingStatusInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <LocID>3</LocID> <ParkingDate>2025-12-10T12:36:31.2297905+05:30</ParkingDate> <ParkingID>5</ParkingID> <UserID>1</UserID> <VehicleNo>sample string 4</VehicleNo> <VehicleTypeID>2</VehicleTypeID> </ParkingStatusInput>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ParkingReportModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserName | string |
None. |
|
| CashColl | decimal number |
None. |
|
| FWOut | integer |
None. |
|
| TWOut | integer |
None. |
|
| Errmsg | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"UserName": "sample string 1",
"CashColl": 2.0,
"FWOut": 3,
"TWOut": 4,
"Errmsg": "sample string 5"
}
application/xml, text/xml
Sample:
<ParkingReportModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <CashColl>2</CashColl> <Errmsg>sample string 5</Errmsg> <FWOut>3</FWOut> <TWOut>4</TWOut> <UserName>sample string 1</UserName> </ParkingReportModel>