POST
api/v1/insert-update-customer-wallet-balance
Request Information
Body Parameters
CustomerWalletBalanceModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientId | integer |
None. |
|
| CustomerGUID | globally unique identifier |
None. |
|
| Amount | decimal number |
None. |
|
| OrderGUID | globally unique identifier |
None. |
Request Formats
application/json, text/json
{
"ClientId": 1,
"CustomerGUID": "f0a97d36-fbd3-4f1c-998a-46a70c8a7c80",
"Amount": 3.1,
"OrderGUID": "06a4947b-f080-4842-b34c-b3bdd9b2f836"
}
text/html
{"ClientId":1,"CustomerGUID":"f0a97d36-fbd3-4f1c-998a-46a70c8a7c80","Amount":3.1,"OrderGUID":"06a4947b-f080-4842-b34c-b3bdd9b2f836"}
application/xml, text/xml
<CustomerWalletBalanceModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Order"> <Amount>3.1</Amount> <ClientId>1</ClientId> <CustomerGUID>f0a97d36-fbd3-4f1c-998a-46a70c8a7c80</CustomerGUID> <OrderGUID>06a4947b-f080-4842-b34c-b3bdd9b2f836</OrderGUID> </CustomerWalletBalanceModel>
application/x-www-form-urlencoded
Sample not available.
Response Information
Description:
Return type: ResultStatusModel
Response Formats
application/json, text/json
{
"Status": "sample string 1",
"Message": "sample string 2"
}
text/html
{"Status":"sample string 1","Message":"sample string 2"}
application/xml, text/xml
<ResultStatusModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Common"> <Message>sample string 2</Message> <Status>sample string 1</Status> </ResultStatusModel>
