POST api/all/vehicle/v1/bapassign

Request Information

URI Parameters

None.

Body Parameters

SyncVehicleFromReaderToBapI
NameDescriptionTypeAdditional information
VehicleID

integer

None.

CompanyID

integer

None.

SystemID

integer

None.

Username

string

None.

Password

string

None.

Request Formats

application/json, text/json

Sample:
{
  "VehicleID": 1,
  "CompanyID": 2,
  "SystemID": 3,
  "Username": "sample string 4",
  "Password": "sample string 5"
}

application/xml, text/xml

Sample:
<SyncVehicleFromReaderToBapI xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiEntities.Center.Model">
  <Password xmlns="http://schemas.datacontract.org/2004/07/Entities.Common">sample string 5</Password>
  <Username xmlns="http://schemas.datacontract.org/2004/07/Entities.Common">sample string 4</Username>
  <CompanyID>2</CompanyID>
  <SystemID>3</SystemID>
  <VehicleID>1</VehicleID>
</SyncVehicleFromReaderToBapI>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SyncVehicleFromReaderToBapO
NameDescriptionTypeAdditional information
IsSuccess

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "IsSuccess": true,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<SyncVehicleFromReaderToBapO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiEntities.Center.Model">
  <IsSuccess xmlns="http://schemas.datacontract.org/2004/07/Entities.Common">true</IsSuccess>
  <Message xmlns="http://schemas.datacontract.org/2004/07/Entities.Common">sample string 2</Message>
</SyncVehicleFromReaderToBapO>