POST Api/TaskEx/LastTransactionInfo
Request Information
URI Parameters
None.
Body Parameters
RiderParameter| Name | Description | Type | Additional information |
|---|---|---|---|
| DriverID | globally unique identifier |
None. |
|
| ClientID | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"DriverID": "a936cb62-66fa-43bb-859c-9613f47614be",
"ClientID": "f396a929-d8a9-4698-bc20-b3e885832465"
}
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>f396a929-d8a9-4698-bc20-b3e885832465</ClientID> <DriverID>a936cb62-66fa-43bb-859c-9613f47614be</DriverID> </RiderParameter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
TranscationInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| LastTrasactionOn | date |
None. |
|
| LastDayTasksCount | integer |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"LastTrasactionOn": "2026-03-24T22:22:39.494809+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-03-24T22:22:39.494809+04:00</LastTrasactionOn> <Message>sample string 3</Message> </TranscationInfo>