POST apiwba/all/rpstop
Request Information
URI Parameters
None.
Body Parameters
JsonAllReportStopInput| Name | Description | Type | Additional information |
|---|---|---|---|
| XNCode | integer |
None. |
|
| 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:
{
"XNCode": 1,
"VehiclePlate": "sample string 2",
"FromDate": "2026-04-04T18:13:01.961598+07:00",
"ToDate": "2026-04-04T18:13:01.961598+07:00",
"WithDriverInfo": true,
"CustomerCode": "sample string 6",
"Key": "sample string 7"
}
application/xml, text/xml
Sample:
<JsonAllReportStopInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Model"> <CustomerCode>sample string 6</CustomerCode> <Key>sample string 7</Key> <FromDate>2026-04-04T18:13:01.961598+07:00</FromDate> <ToDate>2026-04-04T18:13:01.961598+07:00</ToDate> <VehiclePlate>sample string 2</VehiclePlate> <WithDriverInfo>true</WithDriverInfo> <XNCode>1</XNCode> </JsonAllReportStopInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
JsonAllReportStopRs| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Collection of ReportStop |
None. |
|
| ProcessErrorType | integer |
None. |
|
| ProcessErrorDescription | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": [
{
"StartTime": "2026-04-04T18:13:01.961598+07:00",
"TotalTimeStop": 2,
"VBefore": 3,
"Address": "sample string 4",
"Latitude": 5.1,
"Longitude": 6.1
},
{
"StartTime": "2026-04-04T18:13:01.961598+07:00",
"TotalTimeStop": 2,
"VBefore": 3,
"Address": "sample string 4",
"Latitude": 5.1,
"Longitude": 6.1
}
],
"ProcessErrorType": 1,
"ProcessErrorDescription": "sample string 2"
}
application/xml, text/xml
Sample:
<JsonAllReportStopRs xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Model">
<ProcessErrorDescription xmlns="http://schemas.datacontract.org/2004/07/Entities.Common">sample string 2</ProcessErrorDescription>
<ProcessErrorType xmlns="http://schemas.datacontract.org/2004/07/Entities.Common">1</ProcessErrorType>
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/DataAccess.Entities.Reports">
<d2p1:ReportStop>
<d2p1:Address>sample string 4</d2p1:Address>
<d2p1:Latitude>5.1</d2p1:Latitude>
<d2p1:Longitude>6.1</d2p1:Longitude>
<d2p1:StartTime>2026-04-04T18:13:01.961598+07:00</d2p1:StartTime>
<d2p1:TotalTimeStop>2</d2p1:TotalTimeStop>
<d2p1:VBefore>3</d2p1:VBefore>
</d2p1:ReportStop>
<d2p1:ReportStop>
<d2p1:Address>sample string 4</d2p1:Address>
<d2p1:Latitude>5.1</d2p1:Latitude>
<d2p1:Longitude>6.1</d2p1:Longitude>
<d2p1:StartTime>2026-04-04T18:13:01.961598+07:00</d2p1:StartTime>
<d2p1:TotalTimeStop>2</d2p1:TotalTimeStop>
<d2p1:VBefore>3</d2p1:VBefore>
</d2p1:ReportStop>
</Data>
</JsonAllReportStopRs>