POST apiwba/gps/checkincheckoutdetail
Request Information
URI Parameters
None.
Body Parameters
CheckInCheckOutDetailI| Name | Description | Type | Additional information |
|---|---|---|---|
| FromDate | date |
None. |
|
| ToDate | date |
None. |
|
| VehiclePlates | Collection of string |
None. |
|
| MinutePeriod | integer |
None. |
|
| CustomerCode | string |
None. |
|
| Key | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"FromDate": "2026-04-04T18:17:07.2088185+07:00",
"ToDate": "2026-04-04T18:17:07.2088185+07:00",
"VehiclePlates": [
"sample string 1",
"sample string 2"
],
"MinutePeriod": 3,
"CustomerCode": "sample string 4",
"Key": "sample string 5"
}
application/xml, text/xml
Sample:
<CheckInCheckOutDetailI xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Model.Gps">
<CustomerCode xmlns="http://schemas.datacontract.org/2004/07/API.Model">sample string 4</CustomerCode>
<Key xmlns="http://schemas.datacontract.org/2004/07/API.Model">sample string 5</Key>
<FromDate>2026-04-04T18:17:07.2088185+07:00</FromDate>
<MinutePeriod>3</MinutePeriod>
<ToDate>2026-04-04T18:17:07.2088185+07:00</ToDate>
<VehiclePlates xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</VehiclePlates>
</CheckInCheckOutDetailI>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CheckInCheckOutDetailO| Name | Description | Type | Additional information |
|---|---|---|---|
| MessageResult | string |
None. |
|
| IsSucceed | boolean |
None. |
|
| Data | Collection of CheckInCheckOutDetailEnt |
None. |
Response Formats
application/json, text/json
Sample:
{
"MessageResult": "sample string 1",
"IsSucceed": true,
"Data": [
{
"DriverName": "sample string 1",
"DriverLicense": "sample string 2",
"VehiclePlate": "sample string 3",
"TimeCheckIn": "2026-04-04T18:17:07.2088185+07:00",
"StartAddress": "sample string 5",
"StartLat": 6.1,
"StartLng": 7.1,
"TimeCheckOut": "2026-04-04T18:17:07.2088185+07:00",
"EndAddress": "sample string 9",
"EndLat": 10.1,
"EndLng": 11.1,
"GroupName": "sample string 12",
"PrivateCode": "sample string 13"
},
{
"DriverName": "sample string 1",
"DriverLicense": "sample string 2",
"VehiclePlate": "sample string 3",
"TimeCheckIn": "2026-04-04T18:17:07.2088185+07:00",
"StartAddress": "sample string 5",
"StartLat": 6.1,
"StartLng": 7.1,
"TimeCheckOut": "2026-04-04T18:17:07.2088185+07:00",
"EndAddress": "sample string 9",
"EndLat": 10.1,
"EndLng": 11.1,
"GroupName": "sample string 12",
"PrivateCode": "sample string 13"
}
]
}
application/xml, text/xml
Sample:
<CheckInCheckOutDetailO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Model.Gps">
<Data>
<CheckInCheckOutDetailEnt>
<DriverLicense>sample string 2</DriverLicense>
<DriverName>sample string 1</DriverName>
<EndAddress>sample string 9</EndAddress>
<EndLat>10.1</EndLat>
<EndLng>11.1</EndLng>
<StartAddress>sample string 5</StartAddress>
<StartLat>6.1</StartLat>
<StartLng>7.1</StartLng>
<TimeCheckIn>2026-04-04T18:17:07.2088185+07:00</TimeCheckIn>
<TimeCheckOut>2026-04-04T18:17:07.2088185+07:00</TimeCheckOut>
<VehiclePlate>sample string 3</VehiclePlate>
</CheckInCheckOutDetailEnt>
<CheckInCheckOutDetailEnt>
<DriverLicense>sample string 2</DriverLicense>
<DriverName>sample string 1</DriverName>
<EndAddress>sample string 9</EndAddress>
<EndLat>10.1</EndLat>
<EndLng>11.1</EndLng>
<StartAddress>sample string 5</StartAddress>
<StartLat>6.1</StartLat>
<StartLng>7.1</StartLng>
<TimeCheckIn>2026-04-04T18:17:07.2088185+07:00</TimeCheckIn>
<TimeCheckOut>2026-04-04T18:17:07.2088185+07:00</TimeCheckOut>
<VehiclePlate>sample string 3</VehiclePlate>
</CheckInCheckOutDetailEnt>
</Data>
<IsSucceed>true</IsSucceed>
<MessageResult>sample string 1</MessageResult>
</CheckInCheckOutDetailO>