POST apiwba/v1/gps/getaccumulateinfovehicle

Request Information

URI Parameters

None.

Body Parameters

GetAccumulateInfoVehicleI
NameDescriptionTypeAdditional information
DateRequest

date

None.

XNCode

integer

None.

VehiclePlates

Collection of string

None.

Username

string

None.

Password

string

None.

Request Formats

application/json, text/json

Sample:
{
  "DateRequest": "2026-04-04T18:17:06.7712775+07:00",
  "XNCode": 2,
  "VehiclePlates": [
    "sample string 1",
    "sample string 2"
  ],
  "Username": "sample string 3",
  "Password": "sample string 4"
}

application/xml, text/xml

Sample:
<GetAccumulateInfoVehicleI xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Entities.Common">
  <Password>sample string 4</Password>
  <Username>sample string 3</Username>
  <DateRequest>2026-04-04T18:17:06.7712775+07:00</DateRequest>
  <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>
  <XNCode>2</XNCode>
</GetAccumulateInfoVehicleI>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GetAccumulateInfoVehicleO
NameDescriptionTypeAdditional information
Data

Collection of GetAccumulateInfoVehicleItem

None.

IsSuccess

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": [
    {
      "VehiclePlate": "sample string 1",
      "KmGps": 2.1,
      "TotalMinutes": 3,
      "Note": "sample string 4"
    },
    {
      "VehiclePlate": "sample string 1",
      "KmGps": 2.1,
      "TotalMinutes": 3,
      "Note": "sample string 4"
    }
  ],
  "IsSuccess": true,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<GetAccumulateInfoVehicleO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Entities.Common">
  <IsSuccess>true</IsSuccess>
  <Message>sample string 2</Message>
  <Data>
    <GetAccumulateInfoVehicleItem>
      <KmGps>2.1</KmGps>
      <Note>sample string 4</Note>
      <TotalMinutes>3</TotalMinutes>
      <VehiclePlate>sample string 1</VehiclePlate>
    </GetAccumulateInfoVehicleItem>
    <GetAccumulateInfoVehicleItem>
      <KmGps>2.1</KmGps>
      <Note>sample string 4</Note>
      <TotalMinutes>3</TotalMinutes>
      <VehiclePlate>sample string 1</VehiclePlate>
    </GetAccumulateInfoVehicleItem>
  </Data>
</GetAccumulateInfoVehicleO>