POST api/BusinessToBusiness/RechargeWallet

Request Information

URI Parameters

None.

Body Parameters

RechargeWalletModel
NameDescriptionTypeAdditional information
CompanyName

string

None.

WalletId

integer

None.

Amount

decimal number

None.

RefId

string

None.

APIKey

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CompanyName": "sample string 1",
  "WalletId": 1,
  "Amount": 2.0,
  "RefId": "sample string 3",
  "APIKey": "sample string 4"
}

application/xml, text/xml

Sample:
<RechargeWalletModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Flynet.API.Web.Models">
  <APIKey>sample string 4</APIKey>
  <Amount>2</Amount>
  <CompanyName>sample string 1</CompanyName>
  <RefId>sample string 3</RefId>
  <WalletId>1</WalletId>
</RechargeWalletModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>