Skip to content

会员

会员等级

获取单个会员等级信息

GET /plugins/vip/vip_levels/{levelId}

权限

  • 不需要认证用户

响应

成功响应VipLevel结构体

字段描述
id int stringID
seq int string顺序
name string名称
icon string图标
monthPrice float string每月的价格
yearPrice float string每年的价格
description string描述信息
freeLearned bool是否免费学习课程
enabled bool是否开启
createdTime datetime创建时间
maxRate datetime最大折扣百分比

simpleVip结构体

字段描述
levelId string会员等级ID
vipName string会员名称
deadline string有效期
seq string会员等级序号

获取所有会员等级

GET /plugins/vip/vip_levels

权限

  • 不需要认证用户
  • 获取的是状态是启用的会员等级

响应

成功响应list<VipLevel>结构体

是否是VIP会员

GET /me/vip_levels/{vipLevelId}

权限

  • 需要认证用户

响应

是会员

json
{
    "isMember": true
}

不是会员

json
{
    "isMember": false
}