POST api/Account/DriverLoginWithDriverIdVehNo
Request Information
URI Parameters
None.
Body Parameters
DriverLoginHistoryDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| DriverId | integer |
None. |
|
| VehicleNumber | string |
None. |
|
| MobileNumber | string |
None. |
|
| LoginDate | date |
None. |
|
| IsActive | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"DriverId": 2,
"VehicleNumber": "sample string 3",
"MobileNumber": "sample string 4",
"LoginDate": "2026-06-02T15:07:08.4659726+05:30",
"IsActive": true
}
application/xml, text/xml
Sample:
<DriverLoginHistoryDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VardaanCab.Domain.DTOAPI"> <DriverId>2</DriverId> <Id>1</Id> <IsActive>true</IsActive> <LoginDate>2026-06-02T15:07:08.4659726+05:30</LoginDate> <MobileNumber>sample string 4</MobileNumber> <VehicleNumber>sample string 3</VehicleNumber> </DriverLoginHistoryDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.