POST api/lpa/get/vehicle/detail
Request Information
URI Parameters
None.
Body Parameters
VehicleDetailRequestMDL| Name | Description | Type | Additional information |
|---|---|---|---|
| vehicleNumber | string |
None. |
|
| CompanyId | integer |
None. |
|
| UserId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"vehicleNumber": "sample string 1",
"CompanyId": 2,
"UserId": 3
}
application/xml, text/xml
Sample:
<VehicleDetailRequestMDL xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FTSMDLClassLibrary.WebAPIMDL.LPA"> <CompanyId>2</CompanyId> <UserId>3</UserId> <vehicleNumber>sample string 1</vehicleNumber> </VehicleDetailRequestMDL>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
VehicleDetailResponseMDL| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | boolean |
None. |
|
| Message | string |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": true,
"Message": "sample string 2",
"Data": {}
}
application/xml, text/xml
Sample:
<VehicleDetailResponseMDL xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FTSMDLClassLibrary.WebAPIMDL.LPA"> <Data /> <Message>sample string 2</Message> <Result>true</Result> </VehicleDetailResponseMDL>