{
"password": "newpassword",
"pay_password": "payPass123",
"nickname": "Johnny",
"sex": "male",
"birthday": 1609459200,
"email": "john@example.com",
"email_bind": true,
"mobile": "13800138000",
"mobile_bind": true,
"qq": "123456789",
"idcard_name": "John Doe",
"is_enabled": 1
}
curl --location --request PUT '/adminapi/user/user/' \
--header 'access-token: {{access-token}}' \
--header 'refresh-token: {{refresh-token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"password": "newpassword",
"pay_password": "payPass123",
"nickname": "Johnny",
"sex": "male",
"birthday": 1609459200,
"email": "john@example.com",
"email_bind": true,
"mobile": "13800138000",
"mobile_bind": true,
"qq": "123456789",
"idcard_name": "John Doe",
"is_enabled": 1
}'
{
"code": 200,
"msg": "修改成功"
}