## 一、概述
获取当前用户的余额;
## 二、接口
~~~[api]
post:/share/query/balance
*string:rayOauthServerAppId=默认值#头部参数,应用的appId,联系厂商获取
*string:rayOauthServerTimeStamp=默认值#头部参数,当前时间戳,参考前述算法
*string:rayOauthServerSignature=默认值#头部参数,签名,参考前述算法
<<<
success
{
"status": 200,
"code": 200,
"message": "操作成功",
"bizCode": 0,
"timestamp": "1647935343606",
"result": {
"sysStaffAccount": {
"accountBalance": 0,
"totalRechargeAmount": 0,
"totalWithdrawAmount": 0,
"totalChargeAmount": 0
}
}
}
<<<
error
{
"status": 200,
"code": 1006,
"message": "当前请求appId无效,请确认是否存在并启用",
"infoCode": "log202203221515192df",
"bizCode": 0,
"timestamp": "1647933319987"
}
~~~
## 三、关键字段
| 字段名称 || 说明 |
| --- | --- |---|
|statu||状态 200:成功|
|code||状态码 200:成功|
|message||提示消息|
|bizCode||0|
|timestamp||时间戳|
|result|sysStaffAccount|返回结果|
|| accountBalance | 账户余额 |
|| totalRechargeAmount | 累计充值金额 |
|| totalWithdrawAmount | 累计提取金额 |
|| totalChargeAmount | 累计扣款金额 |
## 四、参考代码
```
Log4jV2Util.initLog4jV2TestEnv();
String hostUrl = "http://{hosturl}";
String apiUrl = "/share/query/balance";
String appId = "ray40c9903c6";
String appSecret = "46bacebf-f63c-41cc-b29c-5812994a5e83";
Map<String, String> paramap = new HashMap();
String result = OauthCaller.call(hostUrl, apiUrl, appId, appSecret, paramap);
Logger logger = LoggerFactory.getLogger(OauthClientTest.class);
logger.warn(result);
```