POST api/customer/wallet/deposit

Request Information

URI Parameters

None.

Body Parameters

WalletDepositRequest
NameDescriptionTypeAdditional information
CustomerId

integer

None.

Amount

decimal number

None.

PaymentMethod

string

None.

Reference

string

None.

Request Formats

application/json, text/json

Sample:
{
  "customerId": 1,
  "amount": 2.0,
  "paymentMethod": "sample string 3",
  "reference": "sample string 4"
}

application/xml, text/xml

Sample:
<WalletDepositRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Del.Api.Models.Dtos">
  <Amount>2</Amount>
  <CustomerId>1</CustomerId>
  <PaymentMethod>sample string 3</PaymentMethod>
  <Reference>sample string 4</Reference>
</WalletDepositRequest>

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.