GET api/v2/contravention/getRadarPosition
Renvoi les coordonnées Gps à partir de données récupérées du formulaire
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Distance | integer |
Required |
|
| Minute | integer |
Required |
|
| Date | date |
Required |
|
| Dep | integer |
None. |
|
| Road | string |
None. |
|
| Pr | string |
None. |
|
| Coef | decimal number |
None. |
|
| IsContravention | boolean |
None. |
|
| FormPosition | KilometricPointGps |
None. |
|
| NoPosition | boolean |
None. |
Body Parameters
None.
Response Information
Resource Description
KilometricPointGps
KilometricPointGps| Name | Description | Type | Additional information |
|---|---|---|---|
| Latitude | decimal number |
None. |
|
| Longitude | decimal number |
None. |
|
| IsUsePrLower | boolean |
None. |
|
| IsPrTwoNull | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Latitude": 1.1,
"Longitude": 2.1,
"IsUsePrLower": true,
"IsPrTwoNull": true
}
application/xml, text/xml
Sample:
<KilometricPointGps xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Vehizen.Domain.Dto.Contravention"> <IsPrTwoNull>true</IsPrTwoNull> <IsUsePrLower>true</IsUsePrLower> <Latitude>1.1</Latitude> <Longitude>2.1</Longitude> </KilometricPointGps>