POST apiwba/bataxi/accumulatekmev

Request Information

URI Parameters

None.

Body Parameters

GetAccumulateKmEvInput
NameDescriptionTypeAdditional information
VehiclePlates

Collection of string

None.

XNCode

integer

None.

Key

string

None.

Request Formats

application/json, text/json

Sample:
{
  "VehiclePlates": [
    "sample string 1",
    "sample string 2"
  ],
  "XNCode": 1,
  "Key": "sample string 2"
}

application/xml, text/xml

Sample:
<GetAccumulateKmEvInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Model.Taxi.Ba">
  <Key xmlns="http://schemas.datacontract.org/2004/07/API.Model">sample string 2</Key>
  <XNCode xmlns="http://schemas.datacontract.org/2004/07/API.Model">1</XNCode>
  <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>
</GetAccumulateKmEvInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GetAccumulateKmEvOutput
NameDescriptionTypeAdditional information
Data

Collection of GetAccumulateKmEvOutputI

None.

MessageResult

string

None.

IsSucceed

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": [
    {
      "VehiclePlate": "sample string 1",
      "PrivateCode": "sample string 2",
      "Km": 3.1,
      "Pin": 4,
      "SOH": 5,
      "VehicleTime": "2026-04-08T17:44:49.9894246+07:00"
    },
    {
      "VehiclePlate": "sample string 1",
      "PrivateCode": "sample string 2",
      "Km": 3.1,
      "Pin": 4,
      "SOH": 5,
      "VehicleTime": "2026-04-08T17:44:49.9894246+07:00"
    }
  ],
  "MessageResult": "sample string 1",
  "IsSucceed": true
}

application/xml, text/xml

Sample:
<GetAccumulateKmEvOutput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Model.Taxi.Ba">
  <IsSucceed xmlns="http://schemas.datacontract.org/2004/07/API.Model">true</IsSucceed>
  <MessageResult xmlns="http://schemas.datacontract.org/2004/07/API.Model">sample string 1</MessageResult>
  <Data>
    <GetAccumulateKmEvOutputI>
      <Km>3.1</Km>
      <Pin>4</Pin>
      <PrivateCode>sample string 2</PrivateCode>
      <SOH>5</SOH>
      <VehiclePlate>sample string 1</VehiclePlate>
      <VehicleTime>2026-04-08T17:44:49.9894246+07:00</VehicleTime>
    </GetAccumulateKmEvOutputI>
    <GetAccumulateKmEvOutputI>
      <Km>3.1</Km>
      <Pin>4</Pin>
      <PrivateCode>sample string 2</PrivateCode>
      <SOH>5</SOH>
      <VehiclePlate>sample string 1</VehiclePlate>
      <VehicleTime>2026-04-08T17:44:49.9894246+07:00</VehicleTime>
    </GetAccumulateKmEvOutputI>
  </Data>
</GetAccumulateKmEvOutput>