- 后台接口
- 后台::商品管理
- 后台::文章管理
- 后台::退单管理
- 后台::注册用户管理
- 后台::商品库存管理
- 后台::品牌管理
- 后台::分类管理
- 后台::广告管理
- 后台::地址模板管理
- 后台::仪表盘统计
- 后台::营销管理
- 后台::登录管理
- 后台::素材管理
- 后台::订单管理
- 客户端接口
- 客户端::收获地址管理
- 客户端::发现页模块
- 客户端::购物车模块
- 客户端::首页管理
- 客户端::用户登录模块
- 客户端::用户模块
- 客户端::订单模块
- 客户端::退单模块
- 客户端::商品展 示
- 客户端::品牌管理
- 客户端::分类管理
- 客户端::微信开发者模块
- 后台权限
注册账号
POST
/lejuClient/member/register
客户端::用户模块
请求参数
Body 参数application/json
会员表
birthday
string <date-time>
生日
city
string
所做城市
createTime
string <date-time>
创建时间
email
string
邮箱
growth
integer <int32>
成长值
historyIntegration
integer <int32>
历史积分数量
icon
string
头像
id
string
可选
integration
integer <int32>
积分
isDisabled
integer <int32>
可选
memberLevelId
string
可选
modifyTime
string <date-time>
更新时间
nickname
string
昵称
password
string
密码
personalizedSignature
string
个性签名
phone
string
手机号码
realname
string
真实姓名
sex
integer <int32>
可选
sourceType
integer <int32>
用户来源
status
integer <int32>
可选
username
string
可选
wxOpenId
string
微信的openid
示例
{
"birthday": "2019-08-24T14:15:22Z",
"city": "string",
"createTime": "2019-08-24T14:15:22Z",
"email": "string",
"growth": 0,
"historyIntegration": 0,
"icon": "string",
"id": "string",
"integration": 0,
"isDisabled": 0,
"memberLevelId": "string",
"modifyTime": "2019-08-24T14:15:22Z",
"nickname": "string",
"password": "string",
"personalizedSignature": "string",
"phone": "string",
"realname": "string",
"sex": 0,
"sourceType": 0,
"status": 0,
"username": "string",
"wxOpenId": "string"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://leju.bufan.cloud/lejuClient/member/register' \
--header 'Content-Type: application/json' \
--data-raw '{
"birthday": "2019-08-24T14:15:22Z",
"city": "string",
"createTime": "2019-08-24T14:15:22Z",
"email": "string",
"growth": 0,
"historyIntegration": 0,
"icon": "string",
"id": "string",
"integration": 0,
"isDisabled": 0,
"memberLevelId": "string",
"modifyTime": "2019-08-24T14:15:22Z",
"nickname": "string",
"password": "string",
"personalizedSignature": "string",
"phone": "string",
"realname": "string",
"sex": 0,
"sourceType": 0,
"status": 0,
"username": "string",
"wxOpenId": "string"
}'
返回响应
🟢200OK
application/json
Body
code
integer <int32>
返回码
data
object
返回数据
message
string
返回信息
success
boolean
是否成功
示例值:
false
示例
{
"code": 0,
"data": {},
"message": "string",
"success": false
}
🟢201Created
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
修改于 2023-01-03 09:23:20