POST apiwba/bap/loginbyvehicle

Request Information

URI Parameters

None.

Body Parameters

JsonBapUserLoginByVehicleInput
NameDescriptionTypeAdditional information
XNCode

integer

None.

VehiclePlate

string

None.

StartTime

date

None.

EndTime

date

None.

Username

string

None.

Password

string

None.

Request Formats

application/json, text/json

Sample:
{
  "XNCode": 1,
  "VehiclePlate": "sample string 2",
  "StartTime": "2026-04-04T18:17:32.1799798+07:00",
  "EndTime": "2026-04-04T18:17:32.1799798+07:00",
  "Username": "sample string 5",
  "Password": "sample string 6"
}

application/xml, text/xml

Sample:
<JsonBapUserLoginByVehicleInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Model">
  <Password xmlns="http://schemas.datacontract.org/2004/07/Entities.Common">sample string 6</Password>
  <Username xmlns="http://schemas.datacontract.org/2004/07/Entities.Common">sample string 5</Username>
  <EndTime>2026-04-04T18:17:32.1799798+07:00</EndTime>
  <StartTime>2026-04-04T18:17:32.1799798+07:00</StartTime>
  <VehiclePlate>sample string 2</VehiclePlate>
  <XNCode>1</XNCode>
</JsonBapUserLoginByVehicleInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

JsonBapUserLoginByVehicleResult
NameDescriptionTypeAdditional information
Data

Collection of JsonBapUserLoginByVehicle

None.

ProcessErrorType

integer

None.

ProcessErrorDescription

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": [
    {
      "Username": "sample string 1",
      "Fullname": "sample string 2",
      "LoginTime": "2026-04-04T18:17:32.1799798+07:00",
      "LoginUnixTime": 1775326652,
      "LoginType": "sample string 4",
      "Note": "sample string 5"
    },
    {
      "Username": "sample string 1",
      "Fullname": "sample string 2",
      "LoginTime": "2026-04-04T18:17:32.1799798+07:00",
      "LoginUnixTime": 1775326652,
      "LoginType": "sample string 4",
      "Note": "sample string 5"
    }
  ],
  "ProcessErrorType": 1,
  "ProcessErrorDescription": "sample string 2"
}

application/xml, text/xml

Sample:
<JsonBapUserLoginByVehicleResult 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>
    <JsonBapUserLoginByVehicle>
      <Fullname>sample string 2</Fullname>
      <LoginTime>2026-04-04T18:17:32.1799798+07:00</LoginTime>
      <LoginType>sample string 4</LoginType>
      <Note>sample string 5</Note>
      <Username>sample string 1</Username>
    </JsonBapUserLoginByVehicle>
    <JsonBapUserLoginByVehicle>
      <Fullname>sample string 2</Fullname>
      <LoginTime>2026-04-04T18:17:32.1799798+07:00</LoginTime>
      <LoginType>sample string 4</LoginType>
      <Note>sample string 5</Note>
      <Username>sample string 1</Username>
    </JsonBapUserLoginByVehicle>
  </Data>
</JsonBapUserLoginByVehicleResult>