GET api/Kadavath?authKey={authKey}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
authKey | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of KadavathViewModelName | Description | Type | Additional information |
---|---|---|---|
vehicleNumber | string |
None. |
|
last_updated | date |
None. |
|
lat | decimal number |
None. |
|
lng | decimal number |
None. |
|
speed | integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "vehicleNumber": "sample string 1", "last_updated": "2025-06-19T19:55:50.4832173+05:30", "lat": 3.0, "lng": 4.0, "speed": 5 }, { "vehicleNumber": "sample string 1", "last_updated": "2025-06-19T19:55:50.4832173+05:30", "lat": 3.0, "lng": 4.0, "speed": 5 } ]
text/html
Sample:
[{"vehicleNumber":"sample string 1","last_updated":"2025-06-19T19:55:50.4832173+05:30","lat":3.0,"lng":4.0,"speed":5},{"vehicleNumber":"sample string 1","last_updated":"2025-06-19T19:55:50.4832173+05:30","lat":3.0,"lng":4.0,"speed":5}]
application/xml, text/xml
Sample:
<ArrayOfKadavathViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Dolphin.Models"> <KadavathViewModel> <last_updated>2025-06-19T19:55:50.4832173+05:30</last_updated> <lat>3</lat> <lng>4</lng> <speed>5</speed> <vehicleNumber>sample string 1</vehicleNumber> </KadavathViewModel> <KadavathViewModel> <last_updated>2025-06-19T19:55:50.4832173+05:30</last_updated> <lat>3</lat> <lng>4</lng> <speed>5</speed> <vehicleNumber>sample string 1</vehicleNumber> </KadavathViewModel> </ArrayOfKadavathViewModel>