POST Api/RiderWallet/GetWalletBalance
Request Information
URI Parameters
None.
Body Parameters
WalletTranscationParameter| Name | Description | Type | Additional 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": "2026-04-18T14:53:36.4241891+04:00",
"ToDate": "2026-04-18T14:53:36.4241891+04:00",
"TransactionType": 1,
"Status": 1,
"DriverID": "21b6d992-75b0-47d1-a22b-fc1eb9189fb6",
"ClientID": "2218f618-c755-4e6b-83be-33a10544bf6d"
}
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>2218f618-c755-4e6b-83be-33a10544bf6d</ClientID> <DriverID>21b6d992-75b0-47d1-a22b-fc1eb9189fb6</DriverID> <FromDate>2026-04-18T14:53:36.4241891+04:00</FromDate> <Status>Pending</Status> <ToDate>2026-04-18T14:53:36.4241891+04:00</ToDate> <TransactionType>CashCollected</TransactionType> </WalletTranscationParameter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Wallet| Name | Description | Type | Additional information |
|---|---|---|---|
| CashToBeDeposited | decimal number |
None. |
|
| EarningsToReceive | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"CashToBeDeposited": 1.1,
"EarningsToReceive": 2.1
}
application/xml, text/xml
Sample:
<Wallet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fleetroot.Entity"> <CashToBeDeposited>1.1</CashToBeDeposited> <EarningsToReceive>2.1</EarningsToReceive> </Wallet>