GET api/BusinessToBusiness/GetWalletDetails

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Wallet
NameDescriptionTypeAdditional 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": "2025-08-21 16:08",
  "LastUpdatedDate": "2025-08-21 16:08",
  "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>2025-08-21T16:08:12.3799181-06:00</CerationDate>
  <Currency>sample string 3</Currency>
  <Id>1</Id>
  <LastUpdatedBy>sample string 4</LastUpdatedBy>
  <LastUpdatedDate>2025-08-21T16:08:12.3799181-06:00</LastUpdatedDate>
  <Name>sample string 2</Name>
  <OnHold>1</OnHold>
</Wallet>