POST Customer/CustomerWallet/SaveCredit

Request Information

URI Parameters

None.

Body Parameters

CustomerWalletViewModel
NameDescriptionTypeAdditional information
StoreId

integer

None.

CustomerId

integer

Required

OrderId

integer

Required

OrderNo

integer

None.

EntryDate

date

Required

TransactionType

TransactionType

Required

TransactionTypeName

string

None.

Amount

decimal number

None.

Remarks

string

Required

CreatedDate

date

None.

ModifiedBy

string

None.

Request Formats

application/json, text/json

Sample:
{
  "StoreId": 1,
  "CustomerId": 1,
  "OrderId": 2,
  "OrderNo": 3,
  "EntryDate": "2025-04-26T16:39:21.8481956+01:00",
  "TransactionType": 1,
  "TransactionTypeName": "sample string 5",
  "Amount": 6.0,
  "Remarks": "sample string 7",
  "CreatedDate": "2025-04-26T16:39:21.8481956+01:00",
  "ModifiedBy": "sample string 9"
}

application/xml, text/xml

Sample:
<CustomerWalletViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ECommerce.Service.Customer.ViewModel">
  <Amount>6</Amount>
  <CreatedDate>2025-04-26T16:39:21.8481956+01:00</CreatedDate>
  <CustomerId>1</CustomerId>
  <EntryDate>2025-04-26T16:39:21.8481956+01:00</EntryDate>
  <ModifiedBy>sample string 9</ModifiedBy>
  <OrderId>2</OrderId>
  <OrderNo>3</OrderNo>
  <Remarks>sample string 7</Remarks>
  <StoreId>1</StoreId>
  <TransactionType>Credit</TransactionType>
  <TransactionTypeName>sample string 5</TransactionTypeName>
</CustomerWalletViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.