GET api/brusper/updateWalletBalance?cust_code={cust_code}&amount={amount}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| cust_code | string |
Required |
|
| amount | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of WalletUpdateResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| msg | string |
None. |
|
| error | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"success": true,
"msg": "sample string 2",
"error": "sample string 3"
},
{
"success": true,
"msg": "sample string 2",
"error": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfWalletUpdateResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Brusper_api.Models">
<WalletUpdateResponse>
<error>sample string 3</error>
<msg>sample string 2</msg>
<success>true</success>
</WalletUpdateResponse>
<WalletUpdateResponse>
<error>sample string 3</error>
<msg>sample string 2</msg>
<success>true</success>
</WalletUpdateResponse>
</ArrayOfWalletUpdateResponse>