POST Api/DriverWallet/GetTransaction

Request Information

URI Parameters

None.

Body Parameters

WalletTranscationParameter
NameDescriptionTypeAdditional information
FromDate

date

None.

ToDate

date

None.

TransactionType

RiderWalletTransactionType

None.

Status

WalletTransactionStatus

None.

DriverID

globally unique identifier

None.

ClientID

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "FromDate": "2025-05-20T21:19:26.3344711+04:00",
  "ToDate": "2025-05-20T21:19:26.3344711+04:00",
  "TransactionType": 1,
  "Status": 1,
  "DriverID": "fe4a1ecf-dad2-4ef6-b903-84613c432a04",
  "ClientID": "ac1771f8-d300-4547-8fa0-66a50f305bb9"
}

application/xml, text/xml

Sample:
<WalletTranscationParameter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fleetroot.Entity">
  <ClientID>ac1771f8-d300-4547-8fa0-66a50f305bb9</ClientID>
  <DriverID>fe4a1ecf-dad2-4ef6-b903-84613c432a04</DriverID>
  <FromDate>2025-05-20T21:19:26.3344711+04:00</FromDate>
  <Status>Pending</Status>
  <ToDate>2025-05-20T21:19:26.3344711+04:00</ToDate>
  <TransactionType>CashCollected</TransactionType>
</WalletTranscationParameter>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of TaskRiderWalletViewModel
NameDescriptionTypeAdditional information
RiderWalletID

globally unique identifier

None.

ClientID

globally unique identifier

None.

TaskID

globally unique identifier

None.

RoutePointID

globally unique identifier

None.

DriverID

globally unique identifier

None.

DriverName

string

None.

TeamID

globally unique identifier

None.

TeamName

string

None.

OrderNo

string

None.

Amount

decimal number

None.

Description

string

None.

TransactionOn

date

None.

TranscationType

RiderWalletTransactionType

None.

WalletType

WalletTransactionStatus

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "RiderWalletID": "e23bce38-d40c-43f6-9a86-e49a1dccb18e",
    "ClientID": "5cc1e111-83ab-465b-94fc-b3e5f65cd629",
    "TaskID": "9fa5468c-5c9b-4e55-b3ae-d152e13894be",
    "RoutePointID": "3bcf8632-3e88-4745-9bb3-4977006b6a2c",
    "DriverID": "1f5a04e6-6488-4acb-af85-ac952351d094",
    "DriverName": "sample string 6",
    "TeamID": "2f4a93c6-c8e0-4a16-9335-1e3986c0b4f7",
    "TeamName": "sample string 8",
    "OrderNo": "sample string 9",
    "Amount": 10.1,
    "Description": "sample string 11",
    "TransactionOn": "2025-05-20T21:19:26.3344711+04:00",
    "TranscationType": 1,
    "WalletType": 1
  },
  {
    "RiderWalletID": "e23bce38-d40c-43f6-9a86-e49a1dccb18e",
    "ClientID": "5cc1e111-83ab-465b-94fc-b3e5f65cd629",
    "TaskID": "9fa5468c-5c9b-4e55-b3ae-d152e13894be",
    "RoutePointID": "3bcf8632-3e88-4745-9bb3-4977006b6a2c",
    "DriverID": "1f5a04e6-6488-4acb-af85-ac952351d094",
    "DriverName": "sample string 6",
    "TeamID": "2f4a93c6-c8e0-4a16-9335-1e3986c0b4f7",
    "TeamName": "sample string 8",
    "OrderNo": "sample string 9",
    "Amount": 10.1,
    "Description": "sample string 11",
    "TransactionOn": "2025-05-20T21:19:26.3344711+04:00",
    "TranscationType": 1,
    "WalletType": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfTaskRiderWalletViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FleetrootDriver.Service.Models">
  <TaskRiderWalletViewModel>
    <Amount>10.1</Amount>
    <ClientID>5cc1e111-83ab-465b-94fc-b3e5f65cd629</ClientID>
    <Description>sample string 11</Description>
    <DriverID>1f5a04e6-6488-4acb-af85-ac952351d094</DriverID>
    <DriverName>sample string 6</DriverName>
    <OrderNo>sample string 9</OrderNo>
    <RiderWalletID>e23bce38-d40c-43f6-9a86-e49a1dccb18e</RiderWalletID>
    <RoutePointID>3bcf8632-3e88-4745-9bb3-4977006b6a2c</RoutePointID>
    <TaskID>9fa5468c-5c9b-4e55-b3ae-d152e13894be</TaskID>
    <TeamID>2f4a93c6-c8e0-4a16-9335-1e3986c0b4f7</TeamID>
    <TeamName>sample string 8</TeamName>
    <TransactionOn>2025-05-20T21:19:26.3344711+04:00</TransactionOn>
    <TranscationType>CashCollected</TranscationType>
    <WalletType>Pending</WalletType>
  </TaskRiderWalletViewModel>
  <TaskRiderWalletViewModel>
    <Amount>10.1</Amount>
    <ClientID>5cc1e111-83ab-465b-94fc-b3e5f65cd629</ClientID>
    <Description>sample string 11</Description>
    <DriverID>1f5a04e6-6488-4acb-af85-ac952351d094</DriverID>
    <DriverName>sample string 6</DriverName>
    <OrderNo>sample string 9</OrderNo>
    <RiderWalletID>e23bce38-d40c-43f6-9a86-e49a1dccb18e</RiderWalletID>
    <RoutePointID>3bcf8632-3e88-4745-9bb3-4977006b6a2c</RoutePointID>
    <TaskID>9fa5468c-5c9b-4e55-b3ae-d152e13894be</TaskID>
    <TeamID>2f4a93c6-c8e0-4a16-9335-1e3986c0b4f7</TeamID>
    <TeamName>sample string 8</TeamName>
    <TransactionOn>2025-05-20T21:19:26.3344711+04:00</TransactionOn>
    <TranscationType>CashCollected</TranscationType>
    <WalletType>Pending</WalletType>
  </TaskRiderWalletViewModel>
</ArrayOfTaskRiderWalletViewModel>