文档
测试

获取积分详情

POST
/api/shake/get-points-details

请求头

参数名
类型
描述
必填
token
必填

响应参数

参数名
类型
描述
必填
code
int
示例:1
必填
msg
string
示例:success
必填
data
object
数据字典
必填
integral_balance
int
示例:3090 剩余积分
必填
can_withdraw_amount
float
示例:30.9 可提现总金额
必填
today_already_integral
float
示例:1.1 今日已提现总额
必填
today_can_withdraw_amount
float
示例:48.9 今日剩余可提现额度
必填
integral_exchange_ratio
int
示例:100 现金兑换比例
必填
points_withdrawal_rule
object
数据字典 提现限制规则
必填
daily_withdrawal_limit
int
示例:50 单日提现总额限制
必填
withdrawal_option
string
示例:1,10,50 可提现选项
必填

说明 / 示例

```json { "code": 1, "msg": "success", "data": { "integral_balance": 3090, "can_withdraw_amount": 30.9, "today_already_integral": 1.1, "today_can_withdraw_amount": 48.9, "integral_exchange_ratio": 100, "points_withdrawal_rule": { "daily_withdrawal_limit": 50, "withdrawal_option": "1,10,50" } } } ```