POST api/Wallet/SaveWallet

Request Information

URI Parameters

None.

Body Parameters

ClsWallet
NameDescriptionTypeAdditional information
WalletId

integer

None.

UserId

string

None.

Code

string

None.

Amount

decimal number

None.

UpdatedOn

date

None.

Request Formats

application/json, text/json

Sample:
{
  "WalletId": 1,
  "UserId": "sample string 2",
  "Code": "sample string 3",
  "Amount": 1.0,
  "UpdatedOn": "2025-12-15T04:08:52.8450401+05:30"
}

application/xml, text/xml

Sample:
<ClsWallet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mechon.Models">
  <Amount>1</Amount>
  <Code>sample string 3</Code>
  <UpdatedOn>2025-12-15T04:08:52.8450401+05:30</UpdatedOn>
  <UserId>sample string 2</UserId>
  <WalletId>1</WalletId>
</ClsWallet>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.