- user
- product
- cart
- checkout
- payment
- Order
- eino
Register
POST
/user/register
请求参数
Body 参数application/json
email
string
必需
password
string
必需
confirm_password
string
必需
示例
{
"email" : "customer5@gmail.com",
"password" : "customer",
"confirm_password" : "customer"
}
返回响应
🟢200成功
application/json
Body
code
integer
必需
msg
string
必需
data
object
必需
user_uuid
string
必需
示例
{
"code": 0,
"msg": "string",
"data": {
"user_uuid": "string"
}
}
修改于 2025-03-01 12:39:43