POST v1/api/GetWalletBallance
Request Information
URI Parameters
None.
Body Parameters
MemberId| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": "sample string 1"
}
application/xml, text/xml
Sample:
<ServiceController.MemberId xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VexilUtilityAPI.Controllers"> <UserId>sample string 1</UserId> </ServiceController.MemberId>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Ledger| Name | Description | Type | Additional information |
|---|---|---|---|
| WalletBalnce | decimal number |
None. |
|
| Status | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"WalletBalnce": 1.0,
"Status": true,
"Message": "sample string 3"
}
application/xml, text/xml
Sample:
<ServiceController.Ledger xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VexilUtilityAPI.Controllers"> <Message xmlns="http://schemas.datacontract.org/2004/07/VexilUtilityAPI.Models">sample string 3</Message> <Status xmlns="http://schemas.datacontract.org/2004/07/VexilUtilityAPI.Models">true</Status> <WalletBalnce>1</WalletBalnce> </ServiceController.Ledger>