GET api/BusinessToBusiness/GetWalletDetails
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Wallet| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Name | string |
None. |
|
| Amount | decimal number |
None. |
|
| Currency | string |
None. |
|
| CerationDate | date |
None. |
|
| LastUpdatedDate | date |
None. |
|
| LastUpdatedBy | string |
None. |
|
| OnHold | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"Name": "sample string 2",
"Amount": 1.0,
"Currency": "sample string 3",
"CerationDate": "2026-02-10 07:41",
"LastUpdatedDate": "2026-02-10 07:41",
"LastUpdatedBy": "sample string 4",
"OnHold": 1.0
}
application/xml, text/xml
Sample:
<Wallet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Flynet.Common.DataContracts"> <Amount>1</Amount> <CerationDate>2026-02-10T07:41:18.9789123-06:00</CerationDate> <Currency>sample string 3</Currency> <Id>1</Id> <LastUpdatedBy>sample string 4</LastUpdatedBy> <LastUpdatedDate>2026-02-10T07:41:18.9789123-06:00</LastUpdatedDate> <Name>sample string 2</Name> <OnHold>1</OnHold> </Wallet>