POST Api/TaskEx/LastTransactionInfo

Request Information

URI Parameters

None.

Body Parameters

RiderParameter
NameDescriptionTypeAdditional information
DriverID

globally unique identifier

None.

ClientID

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "DriverID": "495c8076-be51-472e-b845-ece66869dd95",
  "ClientID": "318f75b6-8430-40e6-a78c-4e6168b12705"
}

application/xml, text/xml

Sample:
<RiderParameter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fleetroot.Entity">
  <ClientID>318f75b6-8430-40e6-a78c-4e6168b12705</ClientID>
  <DriverID>495c8076-be51-472e-b845-ece66869dd95</DriverID>
</RiderParameter>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

TranscationInfo
NameDescriptionTypeAdditional information
LastTrasactionOn

date

None.

LastDayTasksCount

integer

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "LastTrasactionOn": "2026-02-08T22:54:03.5230154+04:00",
  "LastDayTasksCount": 2,
  "Message": "sample string 3"
}

application/xml, text/xml

Sample:
<TranscationInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FleetrootDriver.Service.Controllers">
  <LastDayTasksCount>2</LastDayTasksCount>
  <LastTrasactionOn>2026-02-08T22:54:03.5230154+04:00</LastTrasactionOn>
  <Message>sample string 3</Message>
</TranscationInfo>