POST api/Acquisti/GetWalletRechargeCart

Request Information

URI Parameters

None.

Body Parameters

WalletRechargeRequest
NameDescriptionTypeAdditional information
Wallet

CustomerWallet

None.

RechargeAmount

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "Wallet": {
    "CustomerId": 1,
    "WalletId": 2,
    "CreditAvailable": 3.0,
    "CreditAccounting": 4.0,
    "Active": true,
    "Suspended": true,
    "CreationDate": "2026-05-24T20:05:56.2601696+02:00"
  },
  "RechargeAmount": 1.0
}

application/xml, text/xml

Sample:
<WalletRechargeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pass.Models">
  <RechargeAmount>1</RechargeAmount>
  <Wallet>
    <Active>true</Active>
    <CreationDate>2026-05-24T20:05:56.2601696+02:00</CreationDate>
    <CreditAccounting>4</CreditAccounting>
    <CreditAvailable>3</CreditAvailable>
    <CustomerId>1</CustomerId>
    <Suspended>true</Suspended>
    <WalletId>2</WalletId>
  </Wallet>
</WalletRechargeRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.