POST api/gps/rpspeedover
Request Information
URI Parameters
None.
Body Parameters
JsonGpsApiInput| Name | Description | Type | Additional information |
|---|---|---|---|
| VehiclePlate | string |
None. |
|
| FromDate | date |
None. |
|
| ToDate | date |
None. |
|
| WithDriverInfo | boolean |
None. |
|
| CustomerCode | string |
None. |
|
| Key | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"VehiclePlate": "sample string 1",
"FromDate": "2026-04-08T17:27:02.8645349+07:00",
"ToDate": "2026-04-08T17:27:02.8645349+07:00",
"WithDriverInfo": true,
"CustomerCode": "sample string 5",
"Key": "sample string 6"
}
application/xml, text/xml
Sample:
<JsonGpsApiInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Model"> <CustomerCode>sample string 5</CustomerCode> <Key>sample string 6</Key> <FromDate>2026-04-08T17:27:02.8645349+07:00</FromDate> <ToDate>2026-04-08T17:27:02.8645349+07:00</ToDate> <VehiclePlate>sample string 1</VehiclePlate> <WithDriverInfo>true</WithDriverInfo> </JsonGpsApiInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
JsonGpsApiRsRpSpeedOver| Name | Description | Type | Additional information |
|---|---|---|---|
| MessageResult | string |
None. |
|
| ErrorType | integer |
None. |
|
| RpSpeedOvers | Collection of RpSpeedOver |
None. |
Response Formats
application/json, text/json
Sample:
{
"MessageResult": "sample string 1",
"ErrorType": 2,
"RpSpeedOvers": [
{
"VelocityAllow": 1,
"VelocityAverage": 2,
"LngLat": "sample string 3",
"StartTime": "2026-04-08T17:27:02.8645349+07:00",
"StartAddress": "sample string 5",
"TransportType": "sample string 6",
"VehiclePlate": "sample string 7",
"PrivateCode": "sample string 8",
"DriverLicense": "sample string 9",
"DriverName": "sample string 10"
},
{
"VelocityAllow": 1,
"VelocityAverage": 2,
"LngLat": "sample string 3",
"StartTime": "2026-04-08T17:27:02.8645349+07:00",
"StartAddress": "sample string 5",
"TransportType": "sample string 6",
"VehiclePlate": "sample string 7",
"PrivateCode": "sample string 8",
"DriverLicense": "sample string 9",
"DriverName": "sample string 10"
}
]
}
application/xml, text/xml
Sample:
<JsonGpsApiRsRpSpeedOver xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Model">
<ErrorType>2</ErrorType>
<MessageResult>sample string 1</MessageResult>
<RpSpeedOvers>
<RpSpeedOver>
<DriverLicense>sample string 9</DriverLicense>
<DriverName>sample string 10</DriverName>
<LngLat>sample string 3</LngLat>
<PrivateCode>sample string 8</PrivateCode>
<StartAddress>sample string 5</StartAddress>
<StartTime>2026-04-08T17:27:02.8645349+07:00</StartTime>
<TransportType>sample string 6</TransportType>
<VehiclePlate>sample string 7</VehiclePlate>
<VelocityAllow>1</VelocityAllow>
<VelocityAverage>2</VelocityAverage>
</RpSpeedOver>
<RpSpeedOver>
<DriverLicense>sample string 9</DriverLicense>
<DriverName>sample string 10</DriverName>
<LngLat>sample string 3</LngLat>
<PrivateCode>sample string 8</PrivateCode>
<StartAddress>sample string 5</StartAddress>
<StartTime>2026-04-08T17:27:02.8645349+07:00</StartTime>
<TransportType>sample string 6</TransportType>
<VehiclePlate>sample string 7</VehiclePlate>
<VelocityAllow>1</VelocityAllow>
<VelocityAverage>2</VelocityAverage>
</RpSpeedOver>
</RpSpeedOvers>
</JsonGpsApiRsRpSpeedOver>