POST api/Account/DriverLoginWithDriverIdVehNo

Request Information

URI Parameters

None.

Body Parameters

DriverLoginHistory
NameDescriptionTypeAdditional information
Id

integer

None.

DriverId

integer

None.

VehicleNumber

string

None.

LoginDate

date

None.

IsActive

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "DriverId": 1,
  "VehicleNumber": "sample string 2",
  "LoginDate": "2026-02-02T17:00:30.9854269+05:30",
  "IsActive": true
}

application/xml, text/xml

Sample:
<DriverLoginHistory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VardaanCab.DataAccessLayer.DataLayer">
  <DriverId>1</DriverId>
  <Id>1</Id>
  <IsActive>true</IsActive>
  <LoginDate>2026-02-02T17:00:30.9854269+05:30</LoginDate>
  <VehicleNumber>sample string 2</VehicleNumber>
</DriverLoginHistory>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.